aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/util.py')
-rw-r--r--klippy/util.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/klippy/util.py b/klippy/util.py
index 687c1435..c55c7995 100644
--- a/klippy/util.py
+++ b/klippy/util.py
@@ -3,10 +3,14 @@
# Copyright (C) 2016-2020 Kevin O'Connor <kevin@koconnor.net>
#
# This file may be distributed under the terms of the GNU GPLv3 license.
-import os, pty, fcntl, termios, signal, logging
+import fcntl
+import logging
+import os
+import pty
+import signal
+import termios
import traceback
-
######################################################################
# Low-level Unix commands
######################################################################