Skip to content

Commit

Permalink
FIX: Limit
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Sep 20, 2024
1 parent 414e985 commit 1636bae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mnefun/_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -1251,8 +1251,9 @@ def _proj_fig(fname, info, proj_nums, proj_meg, kind, use_ch, duration):
topo_axes = [plt.subplot2grid(shape, (ri, ci + cs_trace), fig=fig)
for ci in range(count)]
# topomaps
plot_projs_topomap(these_projs, info=info, show=False,
axes=topo_axes)
plot_projs_topomap(
these_projs, info=info, show=False, axes=topo_axes,
)
plt.setp(topo_axes, title='', xlabel='')
unit = mne.defaults.DEFAULTS['units'][ch_type]
if cs_trace:
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[flake8]
exclude = __init__.py,externals
ignore = W504,PD005,PD011
max-line-length = 88

[tool:pytest]
addopts =
Expand Down

0 comments on commit 1636bae

Please sign in to comment.