Typo in src/Exports; 'self_exports' -> 'self.exports'
This commit is contained in:
parent
e07553c362
commit
d0e3574227
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ class Exports(object):
|
|||
self._add(context, setting, value)
|
||||
def _add(self, context: str, setting: str, value: typing.Any):
|
||||
if context == None:
|
||||
if not setting in self_exports:
|
||||
if not setting in self._exports:
|
||||
self._exports[setting] = []
|
||||
self._exports[setting].append(value)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue