From 5f34982fd03982078cbc6addb3f74e560eaae96b Mon Sep 17 00:00:00 2001 From: Jan Vcelak Date: Fri, 4 May 2012 12:03:52 +0200 Subject: [PATCH] plugins base: remove commented code --- tuned/plugins/base.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tuned/plugins/base.py b/tuned/plugins/base.py index 8cdfae9..64883ea 100644 --- a/tuned/plugins/base.py +++ b/tuned/plugins/base.py @@ -47,12 +47,6 @@ class Plugin(object): def static_tuning(self): return self._options["static_tuning"] in ["1", "true"] - #def __del__(self): - #try: - #self.cleanup() - #except: - #pass - def register_command(self, option, set_fnc, revert_fnc = None, is_per_dev = False): self._commands[option] = (is_per_dev, set_fnc, revert_fnc)