aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Schulz <quentin.schulz@theobroma-systems.com>2023-06-29 15:48:33 +0200
committerQuentin Schulz <quentin.schulz@theobroma-systems.com>2023-08-04 13:33:31 +0200
commitd9140601a2efc2201426895cd61bfdca9fac0fa6 (patch)
treed62dbc2384457c67dc56e8e4fcf94fbbae4af573
parent9f36e0071b7781fc570eec23d5251f28d6169f2a (diff)
usb-control: command_processor.py: import missing module
time.sleep is used but the time module was never imported, so let's fix that. Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
-rw-r--r--usb-control/command_processor.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/usb-control/command_processor.py b/usb-control/command_processor.py
index 7d0002b..399b911 100644
--- a/usb-control/command_processor.py
+++ b/usb-control/command_processor.py
@@ -6,6 +6,7 @@ __copyright__ = 'Copyright (C) 2019 Theobroma Systems Design und Consulting GmbH
__license__ = 'MIT'
import sys
+import time
import cp210x_controller