mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-08 20:43:25 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -26,7 +26,7 @@ class ZoneInfo(tzinfo):
|
||||
# Note: Both here and in clear_cache, the types allow the use of `str` where
|
||||
# a sequence of strings is required. This should be remedied if a solution
|
||||
# to this typing bug is found: https://github.com/python/typing/issues/256
|
||||
def reset_tzpath(to: Sequence[StrPath] | None = ...) -> None: ...
|
||||
def reset_tzpath(to: Sequence[StrPath] | None = None) -> None: ...
|
||||
def available_timezones() -> set[str]: ...
|
||||
|
||||
TZPATH: Sequence[str]
|
||||
|
||||
Reference in New Issue
Block a user