We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c9b819 commit 6d9231bCopy full SHA for 6d9231b
tests/test_read.py
@@ -117,7 +117,12 @@ def test_header_parse_blank_line():
117
118
# if the blank line in the header causes the reader to exit before reading the file
119
# the line looking for the Date in the ctd.from_btl() will throw a ValueError.
120
- btl = ctd.from_btl(data_path.joinpath("btl", "blank_line_header.btl",))
+ btl = ctd.from_btl(
121
+ data_path.joinpath(
122
+ "btl",
123
+ "blank_line_header.btl",
124
+ ),
125
+ )
126
127
# if a value error wasn't thrown, ensure the names array for the _metadata was set
128
assert btl._metadata["names"].index("Date")
0 commit comments