Skip to content

Commit fe1a81e

Browse files
authored
TST: Remove type-hint from test (#54317)
1 parent 0a9efad commit fe1a81e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/methods/test_shift.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ def test_shift_with_iterable_series(self):
692692
shifts = [0, 1, 2]
693693

694694
df = DataFrame(data)
695-
s: Series = df["a"]
695+
s = df["a"]
696696
tm.assert_frame_equal(s.shift(shifts), df.shift(shifts))
697697

698698
def test_shift_with_iterable_freq_and_fill_value(self):

0 commit comments

Comments
 (0)