fix(aurora): more pylint fixes
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 18s
Actions / Build Documentation (MkDocs) (push) Successful in 13s

This commit is contained in:
SeaswimmerTheFsh 2024-02-28 10:58:57 -05:00
parent 92b031c54e
commit 84543fbd73
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
5 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,4 @@
# pylint: disable=cyclic-import
import json
import sqlite3
import time
@ -7,8 +8,7 @@ from discord import Guild
from redbot.core import data_manager
from .logger import logger
from .utils import (convert_timedelta_to_str, generate_dict,
get_next_case_number)
from .utils import convert_timedelta_to_str, generate_dict, get_next_case_number
def connect() -> sqlite3.Connection: