From 27cdfd5e328bf97a48e64d2c94a4f6a1cc84c110 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 21 Oct 2013 02:01:50 +0200 Subject: [PATCH] just some cleanups --- linspector/core/interface.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/linspector/core/interface.py b/linspector/core/interface.py index 8dc5c99..9f88cac 100644 --- a/linspector/core/interface.py +++ b/linspector/core/interface.py @@ -19,6 +19,7 @@ GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . """ + from collections import OrderedDict @@ -72,5 +73,3 @@ class LinspectorInterface(object): def set_hostgroup_jobs_enabled(self, hostgroupName, enabled=True): self._set_jobs_enabled(self._compare_jobs(lambda job: job.hostgroup.get_name(), hostgroupName), enabled) - -