diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2022-04-28 19:40:46 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-04-28 19:40:46 +0000 |
commit | 6a496a5f40efe6d58b09eeca9320829789ceaa54 (patch) | |
tree | 49f66a1ac180e42f6ad061e6d4f220d3f5bd310f /lib/sqlalchemy/orm/loading.py | |
parent | b51a5f596299e1e52ca27b2db20394110f584257 (diff) | |
parent | f2bd4f513628bb2a7a8e8b36383e3a4324eac803 (diff) | |
download | sqlalchemy-6a496a5f40efe6d58b09eeca9320829789ceaa54.tar.gz |
Merge "inline mypy config; files ignoring type errors for the moment" into main
Diffstat (limited to 'lib/sqlalchemy/orm/loading.py')
-rw-r--r-- | lib/sqlalchemy/orm/loading.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/loading.py b/lib/sqlalchemy/orm/loading.py index d9949eb7a..61966d692 100644 --- a/lib/sqlalchemy/orm/loading.py +++ b/lib/sqlalchemy/orm/loading.py @@ -4,6 +4,8 @@ # # This module is part of SQLAlchemy and is released under # the MIT License: https://www.opensource.org/licenses/mit-license.php +# mypy: ignore-errors + """private module containing functions used to convert database rows into object instances and associated state. @@ -59,7 +61,6 @@ if TYPE_CHECKING: from .state import InstanceState from ..engine.interfaces import _ExecuteOptions from ..sql import Select - from ..sql.base import Executable from ..sql.selectable import ForUpdateArg _T = TypeVar("_T", bound=Any) |