diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-26 11:20:01 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-26 11:20:01 -0500 |
commit | 34209e6189efb8d41ff54e21c47c1a6ec0c36c0e (patch) | |
tree | a51e42929cf357e46cef1e8ddb109f34d01a5abd | |
parent | adf6040e9eeb09299379ad980f8382538c163750 (diff) | |
download | kutter-34209e6189efb8d41ff54e21c47c1a6ec0c36c0e.tar.gz kutter-34209e6189efb8d41ff54e21c47c1a6ec0c36c0e.tar.xz kutter-34209e6189efb8d41ff54e21c47c1a6ec0c36c0e.zip |
heater_bed: Wrap lines to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/extras/heater_bed.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/extras/heater_bed.py b/klippy/extras/heater_bed.py index 5e0fd821..4dd11ec4 100644 --- a/klippy/extras/heater_bed.py +++ b/klippy/extras/heater_bed.py @@ -5,4 +5,5 @@ # This file may be distributed under the terms of the GNU GPLv3 license. def load_config(config): - return config.get_printer().lookup_object('heater').setup_heater(config, 'B') + pheater = config.get_printer().lookup_object('heater') + return pheater.setup_heater(config, 'B') |