René Krell
René Krell
I'm running Bjoern embedded in Python in this way: ```python logger.info('Bjoern bound to UNIX socket %s', sock_name) try: os.unlink(sock_name) except OSError: logger.error('Could not remove previous UNIX socket %s', sock_name) pass...
**Describe the bug** The About Window shows _Copyright (c) 2008-2022 Jendrik Seipp_ as copyright info. Should be probably updated :-) **Screenshots**  **Versions:** - RedNotebook version 2.32 - Debian 12
`cashews==7.0.2` Example code: ```python async def main(): cache.setup('mem://') cache.setup( f'redis://{cfg.redis.host}:{cfg.redis.port}/{cfg.redis.db}', password=None, retry_on_timeout=True, prefix=REDIS_NAMESPACE, protocol=3 ) try: # some code finally: await cache.close() ``` results in a stacktrace: ``` Traceback (most...
Using a TIDAL HIFI-Plus subscription, just wondering how to switch streaming to my external DAC WiiM Pro in master quality. Even the Chromecast option I've activated on the WiiM isn't...
**Describe the bug** The has been introduced a change in commit 6aab658e2aa805ea8d4d0944b256d7cb4d9f944a (version 1.2.1) which makes it impossible to test for an not existing attribute on a BaseConfig object instance...
fastapi 0.111.0 could not be built in a PyPy venv due to a officially defined incompatibility of orjson to PyPy. This changes makes fastapi usable again in PyPy. Resolves discussion...