diff options
Diffstat (limited to 'klippy/extras/display/display.py')
-rw-r--r-- | klippy/extras/display/display.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/klippy/extras/display/display.py b/klippy/extras/display/display.py index c381cf09..be11ac43 100644 --- a/klippy/extras/display/display.py +++ b/klippy/extras/display/display.py @@ -5,8 +5,11 @@ # Copyright (C) 2018 Eric Callahan <arksine.code@gmail.com> # # This file may be distributed under the terms of the GNU GPLv3 license. -import logging, os, ast -from . import aip31068_spi, hd44780, hd44780_spi, st7920, uc1701, menu +import ast +import logging +import os + +from . import aip31068_spi, hd44780, hd44780_spi, menu, st7920, uc1701 # Normal time between each screen redraw REDRAW_TIME = 0.500 |