Skip to content

Commit b99dfd0

Browse files
committed
fixed indentation issue
1 parent 734313a commit b99dfd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyspod/spod_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ def _nextpow2(a):
528528
of 2 that satisfy 2^p >= abs(a)
529529
'''
530530
p = 0
531-
v = 0
531+
v = 0
532532
while v < np.abs(a):
533533
v = 2 ** p
534534
p += 1

0 commit comments

Comments
 (0)