Thanks to visit codestin.com Credit goes to github.com
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.
Any
1 parent cd98102 commit 5e2e686Copy full SHA for 5e2e686
1 file changed
stubs/click-spinner/click_spinner/_version.pyi
@@ -1,5 +1,12 @@
1
-from typing import Any
+from typing import TypedDict, type_check_only
2
+
3
+@type_check_only
4
+class _Versions(TypedDict):
5
+ dirty: bool
6
+ error: None
7
+ full_revisionid: str
8
+ version: str
9
10
version_json: str
11
-def get_versions() -> dict[str, Any]: ...
12
+def get_versions() -> _Versions: ...
0 commit comments