Skip to content

Commit

Permalink
fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
victoris93 committed Jul 6, 2023
1 parent ea1449d commit 6c62c04
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bct/nbs_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,8 @@ def _permutation(args):
hit += 1

if verbose:
print(('permutation %i of %i. Permutation max is %s. Observed max'
' is %s.) % (
u + 1, k, null[u], max_sz))
print(('permutation %i of %i. Permutation max is %s. Observed max is %s.') %
(u + 1, k, null[u], max_sz))
elif (u % (k / 10) == 0 or u == k - 1):
print('permutation %i of %i.' % (u + 1, k))
return null
Expand Down

0 comments on commit 6c62c04

Please sign in to comment.