Skip to content

Commit

Permalink
Fix: Linting Issue
Browse files Browse the repository at this point in the history
Signed-off-by: samadpls <[email protected]>
  • Loading branch information
samadpls committed Apr 2, 2024
1 parent 12e388e commit 0b7191b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hnn_core/tests/test_cell_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def test_cell_response(tmp_path):
kwargs_hist = dict(alpha=0.25)
fig = cell_response.plot_spikes_hist(show=False, **kwargs_hist)
assert all(patch.get_alpha() == kwargs_hist['alpha']
for patch in fig.axes[0].patches), \
"Alpha value not applied to all patches"
for patch in fig.axes[0].patches
), "Alpha value not applied to all patches"

# Testing writing using txt files
with pytest.warns(DeprecationWarning,
Expand Down

0 comments on commit 0b7191b

Please sign in to comment.