Fix bad-whitespace errors found by pylint

This commit is contained in:
Frederic Junod 2017-10-13 17:06:18 +02:00
parent 7af57c7fc4
commit 57204a215e
23 changed files with 66 additions and 66 deletions

View file

@ -106,6 +106,6 @@ class Module(bumblebee.engine.Module):
self._shuffle = False
if line.startswith("tag"):
key, value = line.split(" ", 2)[1:]
self._tags.update({ key: value })
self._tags.update({key: value})
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4