summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/attributes.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-04-28 19:40:46 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-04-28 19:40:46 +0000
commit6a496a5f40efe6d58b09eeca9320829789ceaa54 (patch)
tree49f66a1ac180e42f6ad061e6d4f220d3f5bd310f /lib/sqlalchemy/orm/attributes.py
parentb51a5f596299e1e52ca27b2db20394110f584257 (diff)
parentf2bd4f513628bb2a7a8e8b36383e3a4324eac803 (diff)
downloadsqlalchemy-6a496a5f40efe6d58b09eeca9320829789ceaa54.tar.gz
Merge "inline mypy config; files ignoring type errors for the moment" into main
Diffstat (limited to 'lib/sqlalchemy/orm/attributes.py')
-rw-r--r--lib/sqlalchemy/orm/attributes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/attributes.py b/lib/sqlalchemy/orm/attributes.py
index 619af6510..9a6e94e22 100644
--- a/lib/sqlalchemy/orm/attributes.py
+++ b/lib/sqlalchemy/orm/attributes.py
@@ -4,6 +4,7 @@
#
# This module is part of SQLAlchemy and is released under
# the MIT License: https://www.opensource.org/licenses/mit-license.php
+# mypy: ignore-errors
"""Defines instrumentation for class attributes and their interaction
with instances.
@@ -80,7 +81,6 @@ if TYPE_CHECKING:
from .state import InstanceState
from ..sql.dml import _DMLColumnElement
from ..sql.elements import ColumnElement
- from ..sql.elements import SQLCoreOperations
_T = TypeVar("_T")