Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Nov 7, 2023
1 parent ad18ae6 commit 2f19c29
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_extras.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ def test_make_chromarms():
)

# test for passing Series or dict
result = bioframe.make_chromarms(pd.Series({"chrX": 8}), mids, cols_mids=["chromosome", "loc"])
result = bioframe.make_chromarms(
pd.Series({"chrX": 8}),
mids,
cols_mids=["chromosome", "loc"]
)
pd.testing.assert_frame_equal(arms, result)

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

0 comments on commit 2f19c29

Please sign in to comment.