Skip to content

Commit df89cb6

Browse files
committed
-
1 parent e8f80ef commit df89cb6

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

source_py3/python_toolbox/combi/perming/perm_space.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -456,10 +456,10 @@ def _unsliced_length(self):
456456
@caching.CachedProperty
457457
def variation_selection(self):
458458
'''
459-
The selection of variations that describe this space.
459+
The selection of variations that describes this space.
460460
461461
For example, a rapplied, recurrent, fixed `PermSpace` will get
462-
`<VariationSelection #196: rapplied, recurrent, fixed>`.
462+
`<VariationSelection #392: rapplied, recurrent, fixed>`.
463463
'''
464464
variation_selection = variations.VariationSelection(
465465
filter(
@@ -925,13 +925,6 @@ def short_length_string(self):
925925
'''The set of items in this space's domain.'''
926926
)
927927

928-
929-
def __lt__(self, other):
930-
if isinstance(other, PermSpace):
931-
return self._reduced < other._reduced
932-
else:
933-
return NotImplemented
934-
935928

936929
def __reduce__(self, *args, **kwargs):
937930
#######################################################################

0 commit comments

Comments
 (0)