fix: delete redundant api/libs/typing.py (#35890)

This commit is contained in:
Escape0707 2026-05-07 20:16:29 +09:00 committed by GitHub
parent cd3327013a
commit c6a5de3c18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,9 +0,0 @@
from typing import TypeGuard
def is_str_dict(v: object) -> TypeGuard[dict[str, object]]:
return isinstance(v, dict)
def is_str(v: object) -> TypeGuard[str]:
return isinstance(v, str)