summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/util/_collections.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-03-08 12:14:01 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2023-03-08 13:52:41 -0500
commitbcbb4007bbfa5102d7e53fea8aac50e528d4d1f2 (patch)
tree20ca47143fd2a26abd22c6419a18971a4eed6e93 /lib/sqlalchemy/util/_collections.py
parent8d5986fafd8360ddfe3992bd56602d5a52a23392 (diff)
downloadsqlalchemy-bcbb4007bbfa5102d7e53fea8aac50e528d4d1f2.tar.gz
update for mypy 1.1.1
looks like mypy 1.1.1 slipped in after the last jenkins pep484 build for SQLAlchemy. update for its new issues. Change-Id: Ifca967a75d5e592c04b0138aeda9b646067fe59b
Diffstat (limited to 'lib/sqlalchemy/util/_collections.py')
-rw-r--r--lib/sqlalchemy/util/_collections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util/_collections.py b/lib/sqlalchemy/util/_collections.py
index b1e3fd23f..af117dc92 100644
--- a/lib/sqlalchemy/util/_collections.py
+++ b/lib/sqlalchemy/util/_collections.py
@@ -143,7 +143,7 @@ class FacadeDict(ImmutableDictBase[_KT, _VT]):
"""A dictionary that is not publicly mutable."""
def __new__(cls, *args: Any) -> FacadeDict[Any, Any]:
- new = dict.__new__(cls)
+ new = ImmutableDictBase.__new__(cls)
return new
def copy(self) -> NoReturn: