diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-11-09 09:13:44 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-11-09 15:02:29 -0500 |
commit | ebb54e80a5a52d0cce4cba1abc21c707a42c2c73 (patch) | |
tree | a72c7d810cffc60cd85d5c7118759ef6be8dae40 /lib/sqlalchemy/orm/decl_api.py | |
parent | 8745dcf3e167a68c4665255716eefe138c89a8d2 (diff) | |
download | sqlalchemy-ebb54e80a5a52d0cce4cba1abc21c707a42c2c73.tar.gz |
try to support mypy 0.990
mypy introduces a crash we need to work around, also
some new rules. It also has either a behavioral change
regarding how output is rendered in relationship to
files being within sys.path or not, so work around
that for test_mypy_plugin_py3k.py
References: https://github.com/python/mypy/issues/14027
Change-Id: I689c7fe27dc52abee932de9e0fb23b2a2eba76fa
Diffstat (limited to 'lib/sqlalchemy/orm/decl_api.py')
-rw-r--r-- | lib/sqlalchemy/orm/decl_api.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/decl_api.py b/lib/sqlalchemy/orm/decl_api.py index 94c5181de..01766ad85 100644 --- a/lib/sqlalchemy/orm/decl_api.py +++ b/lib/sqlalchemy/orm/decl_api.py @@ -1,4 +1,4 @@ -# ext/declarative/api.py +# orm/declarative/api.py # Copyright (C) 2005-2022 the SQLAlchemy authors and contributors # <see AUTHORS file> # @@ -1274,7 +1274,7 @@ class registry: if isinstance(cls, type): class_dict["__doc__"] = cls.__doc__ - if self.constructor: + if self.constructor is not None: class_dict["__init__"] = self.constructor class_dict["__abstract__"] = True |