Skip to content

Commit

Permalink
fix pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaRenauld committed Dec 12, 2024
1 parent 7cbd3d4 commit 9c96071
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/scil_connectivity_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ def _filter(input_list, condition):

filter_mask = population_score > population_threshold
logging.info('Condition {}_than resulted in {} filtered '
'elements out of {}.'.format(
condition, np.count_nonzero(~filter_mask), np.prod(shape)))
'elements out of {}.'
.format(condition, np.count_nonzero(~filter_mask),
np.prod(shape)))

return filter_mask

Expand Down

0 comments on commit 9c96071

Please sign in to comment.