fix(aurora): more pylint fixes

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

View file

@ -1,3 +1,4 @@
# pylint: disable=duplicate-code
import json import json
from datetime import timedelta from datetime import timedelta
from typing import Dict from typing import Dict

View file

@ -1,3 +1,4 @@
# pylint: disable=duplicate-code
import json import json
from datetime import timedelta from datetime import timedelta

View file

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

View file

@ -1,13 +1,17 @@
# pylint: disable=cyclic-import
from datetime import datetime, timedelta from datetime import datetime, timedelta
from typing import Union from typing import Union
import humanize import humanize
from discord import Color, Embed, Guild, Interaction, InteractionMessage, Member, Role, User from discord import (Color, Embed, Guild, Interaction, InteractionMessage,
Member, Role, User)
from redbot.core import commands from redbot.core import commands
from redbot.core.utils.chat_formatting import bold, box, error, warning from redbot.core.utils.chat_formatting import bold, box, error, warning
from aurora.utilities.config import config from aurora.utilities.config import config
from aurora.utilities.utils import fetch_channel_dict, fetch_user_dict, get_bool_emoji, get_next_case_number, get_pagesize_str from aurora.utilities.utils import (fetch_channel_dict, fetch_user_dict,
get_bool_emoji, get_next_case_number,
get_pagesize_str)
async def message_factory( async def message_factory(

View file

@ -1,3 +1,4 @@
# pylint: disable=cyclic-import
import json import json
from datetime import timedelta as td from datetime import timedelta as td
from typing import Union from typing import Union