Skip to content
This repository was archived by the owner on Dec 26, 2022. It is now read-only.

Commit 8be3e1f

Browse files
authored
🐛 Fix Python 3.10 (#310)
* Fix for #303 * Move to type checking
1 parent 79816cc commit 8be3e1f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pincer/objects/guild/guild.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from __future__ import annotations
55

6-
from collections import AsyncIterator
76
from dataclasses import dataclass, field
87
from enum import IntEnum
98
from typing import AsyncGenerator, overload, TYPE_CHECKING
@@ -22,8 +21,8 @@
2221

2322
if TYPE_CHECKING:
2423
from typing import Any, Dict, List, Optional, Tuple, Union, Generator
25-
from collections.abc import AsyncIterator
2624

25+
from collections.abc import AsyncIterator
2726
from .audit_log import AuditLog
2827
from .ban import Ban
2928
from .channel import PublicThread, PrivateThread, ChannelType

0 commit comments

Comments
 (0)