From bcbb4007bbfa5102d7e53fea8aac50e528d4d1f2 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 8 Mar 2023 12:14:01 -0500 Subject: 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 --- lib/sqlalchemy/util/_collections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/util/_collections.py') 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: -- cgit v1.2.1