Skip to content

Commit ac2f922

Browse files
scravyrs2
authored andcommitted
Make components of Suffixes Optional (pandas-dev#42544)
1 parent 75587b6 commit ac2f922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_typing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
IndexLabel = Union[Hashable, Sequence[Hashable]]
112112
Level = Union[Hashable, int]
113113
Shape = Tuple[int, ...]
114-
Suffixes = Tuple[str, str]
114+
Suffixes = Tuple[Optional[str], Optional[str]]
115115
Ordered = Optional[bool]
116116
JSONSerializable = Optional[Union[PythonScalar, List, Dict]]
117117
Frequency = Union[str, "DateOffset"]

0 commit comments

Comments
 (0)