summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext/associationproxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/ext/associationproxy.py')
-rw-r--r--lib/sqlalchemy/ext/associationproxy.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py
index fefc289f8..e9f604005 100644
--- a/lib/sqlalchemy/ext/associationproxy.py
+++ b/lib/sqlalchemy/ext/associationproxy.py
@@ -686,7 +686,7 @@ class _AssociationSet(object):
self.add(value)
def __ior__(self, other):
- if util.duck_type_collection(other) is not set:
+ if util.duck_type_collection(other) is not util.Set:
return NotImplemented
for value in other:
self.add(value)
@@ -710,7 +710,7 @@ class _AssociationSet(object):
self.discard(value)
def __isub__(self, other):
- if util.duck_type_collection(other) is not set:
+ if util.duck_type_collection(other) is not util.Set:
return NotImplemented
for value in other:
self.discard(value)
@@ -732,7 +732,7 @@ class _AssociationSet(object):
self.add(value)
def __iand__(self, other):
- if util.duck_type_collection(other) is not set:
+ if util.duck_type_collection(other) is not util.Set:
return NotImplemented
want, have = self.intersection(other), util.Set(self)
@@ -760,7 +760,7 @@ class _AssociationSet(object):
self.add(value)
def __ixor__(self, other):
- if util.duck_type_collection(other) is not set:
+ if util.duck_type_collection(other) is not util.Set:
return NotImplemented
want, have = self.symmetric_difference(other), util.Set(self)