Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions aioitertools/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,11 @@
# Licensed under the MIT license

import inspect
import sys
from typing import Awaitable, Union

from .types import T

if sys.version_info < (3, 8): # pragma: no cover
from typing_extensions import Protocol
else: # pragma: no cover
from typing import Protocol
from typing import Protocol


class Orderable(Protocol): # pragma: no cover
Expand Down