click-spinner: Replace Any return type (#13970)

This commit is contained in:
Semyon Moroz
2025-05-09 15:49:21 +00:00
committed by GitHub
parent cd98102c6c
commit 5e2e68683b
@@ -1,5 +1,12 @@
from typing import Any
from typing import TypedDict, type_check_only
@type_check_only
class _Versions(TypedDict):
dirty: bool
error: None
full_revisionid: str
version: str
version_json: str
def get_versions() -> dict[str, Any]: ...
def get_versions() -> _Versions: ...