Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
TurnrDev committed Oct 20, 2023
1 parent fbf0578 commit d6c98ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trainerdex/discord_bot/modules/mod.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from copy import deepcopy
from datetime import datetime
from decimal import Decimal
from zoneinfo import ZoneInfo
from typing import Mapping, Optional
from zoneinfo import ZoneInfo

import discord.errors
from aiohttp import ClientResponseError
Expand Down
4 changes: 3 additions & 1 deletion trainerdex/discord_bot/utils/deadlines.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
from trainerdex.discord_bot.config import Config
from trainerdex.discord_bot.datatypes import GuildConfig

SHUTDOWN_DATE = datetime.fromtimestamp(1704067199, tz=ZoneInfo("UTC")) # on second before midnight, same time used in Daves message
SHUTDOWN_DATE = datetime.fromtimestamp(
1704067199, tz=ZoneInfo("UTC")
) # on second before midnight, same time used in Daves message


async def get_last_deadline(
Expand Down

0 comments on commit d6c98ee

Please sign in to comment.