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 d96efa8 commit 8db132eCopy full SHA for 8db132e
1 file changed
scaleway-core/scaleway_core/utils/resolve_one_of.py
@@ -1,7 +1,10 @@
1
from collections.abc import Callable
2
from dataclasses import dataclass
3
from typing import Any, Dict, Generic, List, Optional, TypeVar
4
-from _typeshed import SupportsKeysAndGetItem
+from typing import TYPE_CHECKING
5
+
6
+if TYPE_CHECKING:
7
+ from _typeshed import SupportsKeysAndGetItem
8
9
from scaleway_core.profile import ProfileDefaults
10
0 commit comments