Портфолио: Рефакторинг кода

This commit is contained in:
Kirill Samoylenkov 2025-08-22 21:11:08 +07:00
parent f6a2c1fa30
commit 5c18e22b80
31 changed files with 447 additions and 283 deletions

View file

@ -4,4 +4,6 @@ import os
from redis.asyncio.client import Redis
redis = Redis(host=os.getenv("REDIS_HOST"), port=os.getenv("REDIS_PORT"))
redis = Redis(
host=os.getenv("REDIS_HOST"), port=os.getenv("REDIS_PORT")
)