Hotfix [imports]: fix first-party imports error

This commit is contained in:
Kirill Samoylenkov 2025-10-18 23:16:38 +05:00
parent f721d2fcf0
commit f4dca4171e
3 changed files with 6 additions and 7 deletions

View file

@ -1,8 +1,8 @@
import asyncio
from .bot import start_bot
from .db import session
from .redis import client
from bot import start_bot
from db import session
from redis_client import client
def main() -> None:

View file

@ -1,4 +0,0 @@
__all__ = ["client"]
from .session import client

View file

@ -1,3 +1,6 @@
__all__ = ["client"]
from redis.asyncio.client import Redis
client: Redis = ...