Skip to content

Commit

Permalink
flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yrhooke committed Aug 9, 2018
1 parent 4ab35ee commit 35b4b41
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pandas/tests/frame/test_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,8 @@ def test_between_time_raises(self):
df.between_time(start_time='00:00', end_time='12:00')

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

@pytest.mark.parametrize('axis', [
(), ('index',), ('columns',), ('index', 'columns'), (0,), (1,), (0,1)])
(), ('index',), ('columns',), ('index', 'columns'),
(0, ), (1, ), (0, 1)])
def test_between_time_axis_raises(self, axis):
# issue 8839
rng = date_range('1/1/2000', periods=100, freq='10min')
Expand Down

0 comments on commit 35b4b41

Please sign in to comment.