aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/mcu.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r--klippy/mcu.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py
index 635128f4..8195c390 100644
--- a/klippy/mcu.py
+++ b/klippy/mcu.py
@@ -3,8 +3,17 @@
# Copyright (C) 2016-2025 Kevin O'Connor <kevin@koconnor.net>
#
# This file may be distributed under the terms of the GNU GPLv3 license.
-import sys, os, zlib, logging, math
-import serialhdl, msgproto, pins, chelper, clocksync
+import logging
+import math
+import os
+import sys
+import zlib
+
+import chelper
+import clocksync
+import msgproto
+import pins
+import serialhdl
class error(Exception):