diff options
Diffstat (limited to 'lib/sqlalchemy/util/_py_collections.py')
-rw-r--r-- | lib/sqlalchemy/util/_py_collections.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/util/_py_collections.py b/lib/sqlalchemy/util/_py_collections.py index 88deac28f..b02bca28f 100644 --- a/lib/sqlalchemy/util/_py_collections.py +++ b/lib/sqlalchemy/util/_py_collections.py @@ -92,7 +92,7 @@ class immutabledict(ImmutableDictBase[_KT, _VT]): new = dict.__new__(self.__class__) dict.__init__(new, self) - dict.update(new, __d) + dict.update(new, __d) # type: ignore return new def _union_w_kw( @@ -105,7 +105,7 @@ class immutabledict(ImmutableDictBase[_KT, _VT]): new = dict.__new__(self.__class__) dict.__init__(new, self) if __d: - dict.update(new, __d) + dict.update(new, __d) # type: ignore dict.update(new, kw) # type: ignore return new @@ -118,7 +118,7 @@ class immutabledict(ImmutableDictBase[_KT, _VT]): if new is None: new = dict.__new__(self.__class__) dict.__init__(new, self) - dict.update(new, d) + dict.update(new, d) # type: ignore if new is None: return self |