From c265115c48b644db781db64d13474ec5ef363ded Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Fri, 17 Jan 2025 14:56:38 -0500 Subject: [PATCH] fix super call for override --- src/axolotl/utils/dict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/axolotl/utils/dict.py b/src/axolotl/utils/dict.py index 6531b9338..f24f7c4a9 100644 --- a/src/axolotl/utils/dict.py +++ b/src/axolotl/utils/dict.py @@ -25,7 +25,7 @@ def __setitem__(self, name, value): if isFrozen and name not in super().keys(): raise KeyError(name) - super().__setitem__(name, value) + super(Dict, self).__setitem__(name, value) # pylint: disable=bad-super-call try: p = object.__getattribute__(self, "__parent") key = object.__getattribute__(self, "__key")