Skip to content

Commit ad13323

Browse files
committed
[python-dateutil]: add missing annotation to 'tag' in rebuild.py
1 parent 3714af2 commit ad13323

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
from _typeshed import StrOrBytesPath
1+
from _typeshed import StrOrBytesPath, Unused
22
from collections.abc import Iterable
33

44
from ..zoneinfo import _MetadataType
55

66
def rebuild(
7-
filename: StrOrBytesPath, tag=None, format: str = "gz", zonegroups: Iterable[str] = [], metadata: _MetadataType | None = None
7+
filename: StrOrBytesPath,
8+
tag: Unused | None = None,
9+
format: str = "gz",
10+
zonegroups: Iterable[str] = [],
11+
metadata: _MetadataType | None = None,
812
) -> None: ...

0 commit comments

Comments
 (0)