From 7724fbc8530a2ac8abc5780399df487d3341c6b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Tue, 26 Dec 2023 16:18:06 +0100 Subject: [PATCH] lint --- common/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: