Skip to content

Commit 43c5a4f

Browse files
authored
Format with black preview style (#733)
1 parent 7d70c0f commit 43c5a4f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+65
-4
lines changed

techsupport_bot/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
"""Root module for accessing TechSupportBot."""
2+
23
from .bot import *

techsupport_bot/base/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module for providing base classes."""
2+
23
from .advanced import *
34
from .auxiliary import *
45
from .cogs import *

techsupport_bot/base/advanced.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module for defining the advanced bot methods."""
2+
23
import asyncio
34
import datetime
45
import random

techsupport_bot/base/databases.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""This file stores all of the postgres table declarations
22
All models can be used by any extension
33
"""
4+
45
from __future__ import annotations
56

67
import datetime

techsupport_bot/bot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""The main bot functions.
22
"""
3+
34
import asyncio
45
import threading
56

techsupport_bot/botlogging/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Exported loggers.
22
"""
3+
34
from .common import LogContext, LogLevel
45
from .delayed import DelayedLogger
56
from .events import EventLogger

techsupport_bot/botlogging/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""A few common functions to help the logging system work smoothly"""
2+
23
from dataclasses import dataclass
34
from enum import Enum
45
from typing import Optional

techsupport_bot/botlogging/embed.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Module for log embeds.
22
"""
3+
34
import datetime
45

56
import discord

techsupport_bot/botlogging/events.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""All of the discord event listeners where they used for logging"""
2+
23
import datetime
34
import sys
45
from typing import Optional, Sequence, Union

techsupport_bot/cogs/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module for providing builtin cogs."""
2+
23
from .admin import *
34
from .config import *
45
from .help import *

0 commit comments

Comments
 (0)