fix(aurora): fixed a circular import
This commit is contained in:
parent
e7e8d60f3b
commit
e46612dc08
1 changed files with 1 additions and 2 deletions
|
@ -9,11 +9,9 @@ from discord.errors import Forbidden, NotFound
|
|||
from redbot.core import commands, data_manager
|
||||
from redbot.core.utils.chat_formatting import error
|
||||
|
||||
from aurora.models import Change
|
||||
from aurora.utilities.config import config
|
||||
|
||||
|
||||
|
||||
def check_permissions(
|
||||
user: User,
|
||||
permissions: list,
|
||||
|
@ -127,6 +125,7 @@ async def get_next_case_number(guild_id: str, cursor=None) -> int:
|
|||
|
||||
|
||||
def generate_dict(result: dict, guild_id: int) -> dict:
|
||||
from aurora.models import Change
|
||||
if result[7] is not None:
|
||||
hours, minutes, seconds = map(int, result[7].split(':'))
|
||||
duration = timedelta(hours=hours, minutes=minutes, seconds=seconds)
|
||||
|
|
Loading…
Reference in a new issue