From 67f7d3dbaa31027f13a9d8409622978fdb02bf22 Mon Sep 17 00:00:00 2001 From: Teja Date: Mon, 26 Jan 2015 16:50:02 +0100 Subject: [PATCH] code cleanup --- src/octoprint/plugins/lasercutterprofiles/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/octoprint/plugins/lasercutterprofiles/__init__.py b/src/octoprint/plugins/lasercutterprofiles/__init__.py index 02eeb858..d9538836 100644 --- a/src/octoprint/plugins/lasercutterprofiles/__init__.py +++ b/src/octoprint/plugins/lasercutterprofiles/__init__.py @@ -183,7 +183,6 @@ class LaserCutterProfilesPlugin(octoprint.plugin.SettingsPlugin, cfg = dict( current_profile_id=s.get(["current_profile_id"]), ) - print("on_settings_load", cfg) return cfg def on_settings_save(self, data): @@ -193,7 +192,6 @@ class LaserCutterProfilesPlugin(octoprint.plugin.SettingsPlugin, zAxis = data["zAxis"] in octoprint.settings.valid_boolean_trues s.setBoolean(["zAxis"], zAxis) selectedProfile = laserCutterProfileManager.get_current_or_default() - print("on_settings_save", selectedProfile) s.set(["current_profile_id"], selectedProfile['id']) ##~~ TemplatePlugin API