diff --git a/common/config.py b/common/config.py index b019f1c..b7a8d39 100644 --- a/common/config.py +++ b/common/config.py @@ -22,7 +22,7 @@ class Data: "production instance uses PostgreSQL - this is the database the system has been most " "thoroughly tested on.\n\n" "If you start the system using the default ``docker-compose.yml`` file in the Github repository, this " - "variable (and a database) will be set up for you." + "variable (and a database) will be set up for you.", ] = get_config("DB_URL") REDIS_MESSAGE_DATA_EXPIRY_SECONDS: Annotated[ int, @@ -36,7 +36,7 @@ class Data: "documented on `https://redis-py.readthedocs.io/en/stable/connections.html#redis.Redis.from_url " "`_).\n\n" "If you start the system using the default ``docker-compose.yml`` file in the Github repository, this " - "variable (and a Redis instance) will be set up for you." + "variable (and a Redis instance) will be set up for you.", ] = get_config("REDIS_URL") class Network: