Fix up config.py slightly to make pylint happier
This commit is contained in:
parent
279ebf55d6
commit
025c5d3dd1
|
@ -148,13 +148,20 @@ DEFAULTS = {
|
||||||
class Config(Borg, dict):
|
class Config(Borg, dict):
|
||||||
"""Class to provide access to our user configuration"""
|
"""Class to provide access to our user configuration"""
|
||||||
|
|
||||||
|
defaults = None
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
"""Class initialiser"""
|
"""Class initialiser"""
|
||||||
|
|
||||||
Borg.__init__(self)
|
Borg.__init__(self)
|
||||||
dict.__init__(self)
|
dict.__init__(self)
|
||||||
|
|
||||||
|
def prepare_attributes(self):
|
||||||
|
"""Set up our borg environment"""
|
||||||
|
if self.defaults is None:
|
||||||
|
self.defaults = DEFAULTS
|
||||||
|
|
||||||
def __getitem__(self, key):
|
def __getitem__(self, key):
|
||||||
"""Look up a configuration item"""
|
"""Look up a configuration item"""
|
||||||
return(DEFAULTS[key])
|
return(self.defaults[key])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue