Skip to content

Commit 734497f

Browse files
authored
fixed indentation error
1 parent 11188ad commit 734497f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ulab_Crunch_Numbers_Fast/benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def normalized_rms(values):
1616
return math.sqrt(samples_sum / len(values))
1717

1818
def normalized_rms_ulab(values):
19-
# this function works with ndarrays only
19+
# this function works with ndarrays only
2020
minbuf = ulab.numerical.mean(values)
2121
values = values - minbuf
2222
samples_sum = ulab.numerical.sum(values * values)

0 commit comments

Comments
 (0)