diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-06 17:50:53 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-06 17:50:53 +0100 |
commit | 581208b2ffeeb2a2128aee0741fa3fd9e46358e2 (patch) | |
tree | f0d7e0e5cb574b235a5495b0f40f79e3ded7aa4d /klippy/extras/lis3dh.py | |
parent | e1176e4dfb9018e712d4fa86daf41e9e762a1698 (diff) | |
download | kutter-581208b2ffeeb2a2128aee0741fa3fd9e46358e2.tar.gz kutter-581208b2ffeeb2a2128aee0741fa3fd9e46358e2.tar.xz kutter-581208b2ffeeb2a2128aee0741fa3fd9e46358e2.zip |
Run black on all first party python code
Diffstat (limited to 'klippy/extras/lis3dh.py')
-rw-r--r-- | klippy/extras/lis3dh.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/extras/lis3dh.py b/klippy/extras/lis3dh.py index b7e35186..bb5f0558 100644 --- a/klippy/extras/lis3dh.py +++ b/klippy/extras/lis3dh.py @@ -5,8 +5,10 @@ # This file may be distributed under the terms of the GNU GPLv3 license. from . import lis2dw + def load_config(config): return lis2dw.LIS2DW(config, lis2dw.LIS3DH_TYPE) + def load_config_prefix(config): return lis2dw.LIS2DW(config, lis2dw.LIS3DH_TYPE) |