diff options
| author | Lex Neva <github.com@lexneva.name> | 2022-04-21 23:09:05 -0400 |
|---|---|---|
| committer | Kaalleen <reni@allenka.de> | 2022-05-04 19:18:33 +0200 |
| commit | 6ca1af0c88728bd91f1775d0056a66d9272b3a1b (patch) | |
| tree | 1c4c388a79d03fff15593bba91684dde8800c7f9 /lib/utils/dotdict.py | |
| parent | cbcaa0ac0ef43c4bb9da3aa49abd23c1e0d4b360 (diff) | |
avoid anytree dependency
Diffstat (limited to 'lib/utils/dotdict.py')
| -rw-r--r-- | lib/utils/dotdict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/dotdict.py b/lib/utils/dotdict.py index acd575b9..12cf6e79 100644 --- a/lib/utils/dotdict.py +++ b/lib/utils/dotdict.py @@ -15,7 +15,7 @@ class DotDict(dict): def update(self, *args, **kwargs): super(DotDict, self).update(*args, **kwargs) - self.dotdictify() + self._dotdictify() def _dotdictify(self): for k, v in self.items(): |
