Skip to content

Commit 976ba58

Browse files
committed
fixing typing/pylint to mirror other branch
1 parent 577fd6e commit 976ba58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/datetimes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2778,7 +2778,7 @@ def _generate_range(
27782778
if offset.n >= 0:
27792779
start = offset.rollforward(start) # type: ignore[assignment]
27802780
else:
2781-
start = offset.rollback(start)
2781+
start = offset.rollback(start) # type: ignore[assignment]
27822782

27832783
elif end and not offset.is_on_offset(end):
27842784
# Incompatible types in assignment (expression has type "datetime",

0 commit comments

Comments
 (0)