From 34209e6189efb8d41ff54e21c47c1a6ec0c36c0e Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 26 Feb 2019 11:20:01 -0500 Subject: [PATCH] heater_bed: Wrap lines to 80 columns Signed-off-by: Kevin O'Connor --- klippy/extras/heater_bed.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/klippy/extras/heater_bed.py b/klippy/extras/heater_bed.py index 5e0fd8218..4dd11ec46 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')