Skip to content

Commit

Permalink
Fix Python 3.8 linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Nov 14, 2023
1 parent a33bf3a commit ab70e65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions earthaccess/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from itertools import chain
from pathlib import Path
from pickle import dumps, loads
from typing import Any, Dict, List, Optional, Union
from typing import Any, Dict, List, Optional, Tuple, Union
from uuid import uuid4

import earthaccess
Expand Down Expand Up @@ -97,7 +97,7 @@ def __init__(self, auth: Any, pre_authorize: bool = False) -> None:
if auth.authenticated is True:
self.auth = auth
self._s3_credentials: Dict[
tuple, tuple[datetime.datetime, Dict[str, str]]
Tuple, Tuple[datetime.datetime, Dict[str, str]]
] = {}
oauth_profile = "https://urs.earthdata.nasa.gov/profile"
# sets the initial URS cookie
Expand Down

0 comments on commit ab70e65

Please sign in to comment.