Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove typing_extensions import #541

Merged
merged 1 commit into from
Jun 13, 2023
Merged
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
3 changes: 1 addition & 2 deletions pystac_client/stac_api_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
from pystac.stac_io import DefaultStacIO
from requests import Request, Session
from requests.adapters import HTTPAdapter
from typing_extensions import TypeAlias

import pystac_client

Expand All @@ -39,7 +38,7 @@
logger = logging.getLogger(__name__)


Timeout: TypeAlias = Union[float, Tuple[float, float], Tuple[float, None]]
Timeout = Union[float, Tuple[float, float], Tuple[float, None]]


class StacApiIO(DefaultStacIO):
Expand Down