We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a97ae87 commit 63fca0eCopy full SHA for 63fca0e
app/services/newsletter.py
@@ -32,8 +32,9 @@ def __init__(self):
32
self.discord_service = DiscordService()
33
34
# Initialize Redis client
35
- RedisClient().connect()
36
- self.redis_client = RedisClient().client
+ redis_client = RedisClient()
+ redis_client.connect()
37
+ self.redis_client = redis_client.client
38
39
def publish_latest_articles(self):
40
"""
0 commit comments