Skip to content

Commit 561bf49

Browse files
gliptakbashtage
authored andcommitted
Correct flake8 errors (#512)
Signed-off-by: Gábor Lipták <[email protected]>
1 parent 14a1833 commit 561bf49

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

pandas_datareader/tests/test_iex_daily.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,16 @@ def test_multiple_symbols_2(self):
6363
assert len(t) == 73
6464

6565
expected1 = a.loc["2017-02-09"]
66-
tm.assert_almost_equal(expected1["close"], 130.36, check_less_precise=True)
67-
tm.assert_almost_equal(expected1["high"], 130.38, check_less_precise=True)
66+
tm.assert_almost_equal(expected1["close"], 130.36,
67+
check_less_precise=True)
68+
tm.assert_almost_equal(expected1["high"], 130.38,
69+
check_less_precise=True)
6870

6971
expected2 = a.loc["2017-05-24"]
70-
tm.assert_almost_equal(expected2["close"], 151.57, check_less_precise=True)
71-
tm.assert_almost_equal(expected2["high"], 152.40, check_less_precise=True)
72+
tm.assert_almost_equal(expected2["close"], 151.57,
73+
check_less_precise=True)
74+
tm.assert_almost_equal(expected2["high"], 152.40,
75+
check_less_precise=True)
7276

7377
expected3 = t.loc["2017-02-09"]
7478
assert expected3["close"] == 269.20

0 commit comments

Comments
 (0)