summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-04-17 10:31:48 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-04-17 11:09:03 -0400
commita8b2fbb55c6de302b053b4309c6e53cd7f748448 (patch)
tree51d6deaa1f3b950bab42240385f3ad4bae341f28 /lib/sqlalchemy/ext
parentc538f810bce57472c8960a0a6c4c61024b00f3ed (diff)
downloadsqlalchemy-a8b2fbb55c6de302b053b4309c6e53cd7f748448.tar.gz
mypy .950 updates
Fixes: #7942 Change-Id: Ice1243e1704e88bb8fa13fb0d1f8e24dcd94bfd4
Diffstat (limited to 'lib/sqlalchemy/ext')
-rw-r--r--lib/sqlalchemy/ext/associationproxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py
index 2e6c6b422..aca0be683 100644
--- a/lib/sqlalchemy/ext/associationproxy.py
+++ b/lib/sqlalchemy/ext/associationproxy.py
@@ -1804,7 +1804,7 @@ class _AssociationSet(_AssociationSingleItem[_T], MutableSet[_T]):
for member in removals:
remover(member)
- def __ior__(
+ def __ior__( # type: ignore
self: Self, other: AbstractSet[_S]
) -> MutableSet[Union[_T, _S]]:
if not collections._set_binops_check_strict(self, other):
@@ -1887,7 +1887,7 @@ class _AssociationSet(_AssociationSingleItem[_T], MutableSet[_T]):
for value in add:
self.add(value)
- def __ixor__(self, other: AbstractSet[_S]) -> MutableSet[Union[_T, _S]]:
+ def __ixor__(self, other: AbstractSet[_S]) -> MutableSet[Union[_T, _S]]: # type: ignore # noqa: E501
if not collections._set_binops_check_strict(self, other):
raise NotImplementedError()