diff --git a/src/BTrees/_base.py b/src/BTrees/_base.py index 0afcd49..247fd27 100644 --- a/src/BTrees/_base.py +++ b/src/BTrees/_base.py @@ -617,7 +617,9 @@ def __repr__(self): class _MutableSetMixin(object): # Like _MutableMappingMixin, but for sets. def isdisjoint(self, other): - 'Return True if two sets have a null intersection.' + """ + Return True if two sets have a null intersection. + """ for value in other: if value in self: return False