commit d4a7d7ee02fa977d525e98fa1616bad97b9d2598
parent beff80608f3b69b762c4e738cacd5963804cd58b
Author: [email protected] <[email protected]>
Date: Tue, 20 Oct 2020 16:00:03 +0100
Fix python 3.7 compatibility
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dspplot/dspplot/dspplotting.py b/dspplot/dspplot/dspplotting.py
@@ -15,7 +15,7 @@ def gen_ticks(stop, start=10):
for s in range(1, 10):
if start * s > stop:
yield stop
- raise StopIteration
+ return
yield start * s
for t in gen_ticks(stop, start * 10):
yield t
@@ -25,7 +25,7 @@ def gen_tick_labels(stop, start=10):
for s in range(1, 10):
if start * s > stop:
yield (str(int(stop)) + 'Hz').replace('000Hz', 'kHz')
- raise StopIteration
+ return
yield ''
for t in gen_tick_labels(stop, start * 10):
yield t