Respect 80 columns
This commit is contained in:
parent
a8cc2b1101
commit
97d26b3e2f
1 changed files with 3 additions and 1 deletions
|
|
@ -166,7 +166,9 @@ class Profile(object):
|
|||
return True
|
||||
|
||||
def load(self):
|
||||
return self._load_config(self._manager, self._config_file) and self._load_ktuned() and self._apply_sysctl() and self._apply_elevator() and self._call_scripts()
|
||||
return (self._load_config(self._manager, self._config_file) and
|
||||
self._load_ktuned() and self._apply_sysctl() and
|
||||
self._apply_elevator() and self._call_scripts())
|
||||
|
||||
def cleanup(self):
|
||||
self._revert_sysctl()
|
||||
|
|
|
|||
Loading…
Reference in a new issue