generated from geekiot/python-template
Hotfix [imports]: fix first-party imports error
This commit is contained in:
parent
f721d2fcf0
commit
f4dca4171e
3 changed files with 6 additions and 7 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
__all__ = ["client"]
|
||||
|
||||
|
||||
from .session import client
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
__all__ = ["client"]
|
||||
|
||||
|
||||
from redis.asyncio.client import Redis
|
||||
|
||||
client: Redis = ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue