diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-27 13:02:16 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-27 13:18:03 -0400 |
commit | 373c7ff301c03dc40263a2ec58909f3c7e3cdcc4 (patch) | |
tree | 3396828169c9248e2d0c717e34230f9b4a4e5fa6 | |
parent | 2622b439fc9e9c5b93daf1a49dc3ed34bd9f85eb (diff) | |
download | kutter-373c7ff301c03dc40263a2ec58909f3c7e3cdcc4.tar.gz kutter-373c7ff301c03dc40263a2ec58909f3c7e3cdcc4.tar.xz kutter-373c7ff301c03dc40263a2ec58909f3c7e3cdcc4.zip |
display: Move klippy/extras/display.py to klippy/extras/display/display.py
Move the display code into its own directory. This is in preparation
for splitting it up into its own modules.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/extras/display/__init__.py | 9 | ||||
-rw-r--r-- | klippy/extras/display/display.py (renamed from klippy/extras/display.py) | 0 |
2 files changed, 9 insertions, 0 deletions
diff --git a/klippy/extras/display/__init__.py b/klippy/extras/display/__init__.py new file mode 100644 index 00000000..3b5e999e --- /dev/null +++ b/klippy/extras/display/__init__.py @@ -0,0 +1,9 @@ +# Package definition for the extras/display directory +# +# Copyright (C) 2018 Kevin O'Connor <kevin@koconnor.net> +# +# This file may be distributed under the terms of the GNU GPLv3 license. +import display + +def load_config(config): + return display.load_config(config) diff --git a/klippy/extras/display.py b/klippy/extras/display/display.py index b62e8534..b62e8534 100644 --- a/klippy/extras/display.py +++ b/klippy/extras/display/display.py |