Skip to content

Commit 5f939dd

Browse files
style(pre-commit): auto fixes from pre-commit.com hooks
1 parent ef0cb75 commit 5f939dd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

discord/appinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
from __future__ import annotations
2727

2828
from typing import TYPE_CHECKING, Any
29-
from .enums import ApplicationEventWebhookStatus, try_enum
3029

3130
from . import utils
3231
from .asset import Asset
32+
from .enums import ApplicationEventWebhookStatus, try_enum
3333
from .flags import ApplicationFlags
3434
from .permissions import Permissions
3535

discord/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ def __init__(
244244
self.loop: asyncio.AbstractEventLoop = (
245245
asyncio.get_event_loop() if loop is None else loop
246246
)
247-
self._listeners: dict[
248-
str, list[tuple[asyncio.Future, Callable[..., bool]]]
249-
] = {}
247+
self._listeners: dict[str, list[tuple[asyncio.Future, Callable[..., bool]]]] = (
248+
{}
249+
)
250250
self.shard_id: int | None = options.get("shard_id")
251251
self.shard_count: int | None = options.get("shard_count")
252252

0 commit comments

Comments
 (0)