aboutsummaryrefslogtreecommitdiff
path: root/usb-control/command_processor.py
diff options
context:
space:
mode:
authorQuentin Schulz <quentin.schulz@theobroma-systems.com>2023-06-29 15:23:58 +0200
committerQuentin Schulz <quentin.schulz@theobroma-systems.com>2023-08-04 13:33:29 +0200
commit5437d7491253d7f273da2ba76ca029ae2b78926d (patch)
tree4a9b957eed076dc87acf276c5cc1a3201ab5d29f /usb-control/command_processor.py
parent403a1bbc64e432851f6a485f657e31e12ab6e0cd (diff)
usb-control: fix flake8 E128 continuation line under-indented for visual indent
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Diffstat (limited to 'usb-control/command_processor.py')
-rw-r--r--usb-control/command_processor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/usb-control/command_processor.py b/usb-control/command_processor.py
index f68fd9b..34f66a0 100644
--- a/usb-control/command_processor.py
+++ b/usb-control/command_processor.py
@@ -25,9 +25,9 @@ class CommandProcessor:
self.options_dict = options_dict
self.command_dict = {
'delay': (do_delay,
- 'delays execution for 300 ms'),
+ 'delays execution for 300 ms'),
'list': (do_list,
- 'lists serial numbers of attached boards'),
+ 'lists serial numbers of attached boards'),
}
self.command_dict.update(command_dict)