Fix unused-variables errors found by pylint

This commit is contained in:
Frederic Junod 2017-10-18 08:36:07 +02:00
parent 851be18d72
commit 70a58715f3
4 changed files with 5 additions and 6 deletions

View file

@ -71,7 +71,7 @@ class Config(bumblebee.store.Store):
self._args = parser.parse_args(args if args else [])
if not self._args.debug:
logger = logging.getLogger().disabled = True
logging.getLogger().disabled = True
for param in self._args.parameters:
key, value = param.split("=")