Skip to content

Commit

Permalink
FIX, STY: remove no-op comma
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-huberty committed Sep 28, 2023
1 parent 3ecc911 commit dbcf773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne_qt_browser/tests/test_pg_specific.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def test_ch_specific_annot(raw_orig, pg_backend):
# the +1 is needed because ypos indexing of the traces starts at 1, not 0
want_index = fig_ch_names.index(raw_orig.annotations.ch_names[0][-1]) + 1
# The round basically just rounds 27.5 up to 28
got_index = np.round(last_fill_between.yData[0],).astype(int)
got_index = np.round(last_fill_between.yData[0]).astype(int)
assert got_index == want_index # should be 28
fig.close()

Expand Down

0 comments on commit dbcf773

Please sign in to comment.