aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/motion_report.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/klippy/extras/motion_report.py b/klippy/extras/motion_report.py
index 7b615251..ce7486e4 100644
--- a/klippy/extras/motion_report.py
+++ b/klippy/extras/motion_report.py
@@ -23,8 +23,7 @@ class DumpStepper:
break
end_clock = data[count-1].first_clock
res.reverse()
- return ([data[i] for i in range(count-1, -1, -1)
- for data, count in res], res)
+ return ([d[i] for d, cnt in res for i in range(cnt-1, -1, -1)], res)
def log_steps(self, data):
if not data:
return
@@ -60,8 +59,7 @@ class DumpTrapQ:
break
end_time = data[count-1].print_time
res.reverse()
- return ([data[i] for i in range(count-1, -1, -1)
- for data, count in res], res)
+ return ([d[i] for d, cnt in res for i in range(cnt-1, -1, -1)], res)
def log_trapq(self, data):
if not data:
return