Skip to content

Commit ee34f5a

Browse files
committed
remove type ignore
1 parent 2153987 commit ee34f5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1993,7 +1993,7 @@ def using_infer_string() -> bool:
19931993

19941994
_warsaws: list[Any] = ["Europe/Warsaw", "dateutil/Europe/Warsaw"]
19951995
if pytz is not None:
1996-
_warsaws.append(pytz.timezone("Europe/Warsaw")) # type: ignore[arg-type]
1996+
_warsaws.append(pytz.timezone("Europe/Warsaw"))
19971997

19981998

19991999
@pytest.fixture(params=_warsaws)

0 commit comments

Comments
 (0)