Skip to content

Commit

Permalink
fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed May 16, 2022
1 parent 0ef8568 commit 0b937ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/data/datatypes/test_tabular.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import tempfile

from galaxy.datatypes.tabular import (
MAX_DATA_LINES,
Tabular,
Expand All @@ -17,7 +18,7 @@ def test_tabular_set_meta_large_file():
# data and comment lines are not stored if more than MAX_DATA_LINES
assert dataset.metadata.data_lines is None
assert dataset.metadata.comment_lines is None
assert dataset.metadata.column_types == ['str', 'str']
assert dataset.metadata.column_types == ["str", "str"]
assert dataset.metadata.columns == 2
assert dataset.metadata.delimiter == "\t"
assert not hasattr(dataset.metadata, "column_names")
Expand Down

0 comments on commit 0b937ed

Please sign in to comment.