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

Commit

Permalink
🐛 Fix Python 3.10 (#310)
Browse files Browse the repository at this point in the history
* Fix for #303
* Move to type checking
  • Loading branch information
VincentRPS authored Dec 14, 2021
1 parent 79816cc commit 8be3e1f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pincer/objects/guild/guild.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from __future__ import annotations

from collections import AsyncIterator
from dataclasses import dataclass, field
from enum import IntEnum
from typing import AsyncGenerator, overload, TYPE_CHECKING
Expand All @@ -22,8 +21,8 @@

if TYPE_CHECKING:
from typing import Any, Dict, List, Optional, Tuple, Union, Generator
from collections.abc import AsyncIterator

from collections.abc import AsyncIterator
from .audit_log import AuditLog
from .ban import Ban
from .channel import PublicThread, PrivateThread, ChannelType
Expand Down

0 comments on commit 8be3e1f

Please sign in to comment.