We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dee3007 commit 5261768Copy full SHA for 5261768
intake_esgf/catalog.py
@@ -1,22 +1,13 @@
1
"""The primary object in intake-esgf."""
2
3
import re
4
-import sys
5
import time
6
import warnings
7
from collections.abc import Callable
8
from functools import partial
9
from multiprocessing.pool import ThreadPool
10
from pathlib import Path
11
-from typing import Any, cast
12
-
13
-# Self isn't available in typing in 3.10
14
-if sys.version_info[1] == 10:
15
- from typing import Literal
16
17
- from typing_extensions import Self
18
-else:
19
- from typing import Literal, Self
+from typing import Any, Literal, Self, cast
20
21
import pandas as pd
22
import requests
0 commit comments