mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 05:54:02 +08:00
[python-dateutil] Add missing annotation to 'tag' in rebuild.py (#15196)
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
from _typeshed import StrOrBytesPath
|
||||
from _typeshed import StrOrBytesPath, Unused
|
||||
from collections.abc import Iterable
|
||||
|
||||
from ..zoneinfo import _MetadataType
|
||||
|
||||
def rebuild(
|
||||
filename: StrOrBytesPath, tag=None, format: str = "gz", zonegroups: Iterable[str] = [], metadata: _MetadataType | None = None
|
||||
filename: StrOrBytesPath,
|
||||
tag: Unused | None = None,
|
||||
format: str = "gz",
|
||||
zonegroups: Iterable[str] = [],
|
||||
metadata: _MetadataType | None = None,
|
||||
) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user