Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Mar 7, 2019
1 parent fe40ba5 commit bbf66b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biom/tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -1476,7 +1476,7 @@ def test_to_dataframe(self):
exp = pd.SparseDataFrame(np.array([[0.0, 1.0, 2.0], [3.0, 4.0, 5.0]]),
index=['O1', 'O2'],
columns=['S1', 'S2', 'S3'],
default_fill_value = 0.0)
default_fill_value=0.0)
obs = example_table.to_dataframe()
pdt.assert_frame_equal(obs, exp)

Expand Down

0 comments on commit bbf66b3

Please sign in to comment.