Research suggests _config and config are not synonymous
This commit is contained in:
parent
9c15431925
commit
661199aa54
1 changed files with 1 additions and 1 deletions
|
@ -18,5 +18,5 @@ class Config(object):
|
|||
def get(self, key, default=None):
|
||||
return self._config.get(key, default)
|
||||
def __contains__(self, key):
|
||||
return key in self.config
|
||||
return key in self._config
|
||||
|
||||
|
|
Loading…
Reference in a new issue