[python-dateutil] Add missing annotation to 'tag' in rebuild.py (#15196)

This commit is contained in:
lev-blit
2026-01-23 19:30:25 +02:00
committed by GitHub
parent 65ae6a2ebf
commit 72fc258376
@@ -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: ...