Skip to content

Commit a68b135

Browse files
Remove unnecessary __future__.annotations imports
Co-authored-by: onerandomusername <me@arielle.codes>
1 parent 07c651d commit a68b135

File tree

26 files changed

+0
-51
lines changed

26 files changed

+0
-51
lines changed

bot/converters.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import re
42
import typing as t
53
from datetime import UTC, datetime

bot/errors.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
from collections.abc import Hashable
42
from typing import TYPE_CHECKING
53

bot/exts/filtering/_filter_context.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import typing
42
from collections.abc import Callable, Coroutine, Iterable
53
from dataclasses import dataclass, field, replace

bot/exts/filtering/_filter_lists/domain.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import re
42
import typing
53

bot/exts/filtering/_filter_lists/extension.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import typing
42
from os.path import splitext
53

bot/exts/filtering/_filter_lists/invite.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import re
42
import typing
53

bot/exts/filtering/_filter_lists/token.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import re
42
import typing
53

bot/exts/filtering/_settings.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import operator
42
import traceback
53
from abc import abstractmethod

bot/exts/filtering/_settings_types/settings_entry.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
from abc import abstractmethod
42
from typing import Any, ClassVar, Self
53

bot/exts/filtering/_ui/filter.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
from collections.abc import Callable
42
from typing import Any
53

0 commit comments

Comments
 (0)