Skip to content

Commit 35b4b41

Browse files
committed
flake8 fixes
1 parent 4ab35ee commit 35b4b41

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/tests/frame/test_timeseries.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,8 @@ def test_between_time_raises(self):
724724
df.between_time(start_time='00:00', end_time='12:00')
725725

726726
@pytest.mark.parametrize('axis', [
727-
(), ('index',), ('columns',), ('index', 'columns'), (0,), (1,), (0,1)])
727+
(), ('index',), ('columns',), ('index', 'columns'),
728+
(0, ), (1, ), (0, 1)])
728729
def test_between_time_axis(self, axis):
729730
# issue 8839
730731
rng = date_range('1/1/2000', periods=100, freq='10min')
@@ -743,7 +744,8 @@ def test_between_time_axis(self, axis):
743744
assert len(selected) == exp_len
744745

745746
@pytest.mark.parametrize('axis', [
746-
(), ('index',), ('columns',), ('index', 'columns'), (0,), (1,), (0,1)])
747+
(), ('index',), ('columns',), ('index', 'columns'),
748+
(0, ), (1, ), (0, 1)])
747749
def test_between_time_axis_raises(self, axis):
748750
# issue 8839
749751
rng = date_range('1/1/2000', periods=100, freq='10min')

0 commit comments

Comments
 (0)