remove unnecessary brackets
This commit is contained in:
parent
f1a43f1101
commit
3dd50f363d
11 changed files with 13 additions and 12 deletions
|
|
@ -106,7 +106,7 @@ class BaseBackend(object):
|
|||
self.lock = RLock()
|
||||
|
||||
# Private fields (which start with '_')
|
||||
self._private_config = dict([(key, value) for key, value in config.iteritems() if key.startswith('_')])
|
||||
self._private_config = dict((key, value) for key, value in config.iteritems() if key.startswith('_'))
|
||||
|
||||
# Configuration of backend
|
||||
self.config = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue