Skip to content

Commit a19512c

Browse files
committed
Fix linting
1 parent ad18ae6 commit a19512c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_extras.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ def test_make_chromarms():
5151
)
5252

5353
# test for passing Series or dict
54-
result = bioframe.make_chromarms(pd.Series({"chrX": 8}), mids, cols_mids=["chromosome", "loc"])
54+
result = bioframe.make_chromarms(
55+
pd.Series({"chrX": 8}),
56+
mids,
57+
cols_mids=["chromosome", "loc"]
58+
)
5559
pd.testing.assert_frame_equal(arms, result)
5660

5761
result = bioframe.make_chromarms(pd.Series({"chrX": 8}), pd.Series({"chrX": 4}))

0 commit comments

Comments
 (0)