Skip to content

Commit

Permalink
fix type hint for py38
Browse files Browse the repository at this point in the history
  • Loading branch information
nbud committed Jan 2, 2024
1 parent c4ddd7b commit 1b1e062
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/arim/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
"""

from typing import Dict

import pooch

EXAMPLES = pooch.create(
Expand All @@ -22,4 +24,4 @@
)

# Dictionary of all datasets
DATASETS: dict[str, pooch.Pooch] = {"examples": EXAMPLES}
DATASETS: Dict[str, pooch.Pooch] = {"examples": EXAMPLES}

0 comments on commit 1b1e062

Please sign in to comment.