diff options
Diffstat (limited to 'klippy/extras/replicape.py')
-rw-r--r-- | klippy/extras/replicape.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/klippy/extras/replicape.py b/klippy/extras/replicape.py index 8f62a959..cad70036 100644 --- a/klippy/extras/replicape.py +++ b/klippy/extras/replicape.py @@ -3,8 +3,12 @@ # Copyright (C) 2017-2019 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. -import logging, os -import pins, mcu +import logging +import os + +import mcu +import pins + from . import bus REPLICAPE_MAX_CURRENT = 3.84 |