@@ -668,10 +668,9 @@ def unpartialled(self):
668668 )
669669
670670 return PermSpace (
671- self .sequence_length , domain = self .domain ,
672- n_elements = self .sequence_length , fixed_map = self .fixed_map ,
673- degrees = self .degrees , slice_ = self .canonical_slice ,
674- is_combination = self .is_combination
671+ self .sequence , n_elements = self .sequence_length ,
672+ fixed_map = self .fixed_map , degrees = self .degrees ,
673+ slice_ = self .canonical_slice , is_combination = self .is_combination
675674 )
676675
677676 unsliced = caching .CachedProperty (
@@ -695,8 +694,8 @@ def uncombinationed(self):
695694 "uncombinationed, because the number of items "
696695 "would be different. Use `.unsliced` first." )
697696 return PermSpace (
698- self .sequence_length , domain = self .domain , fixed_map = self .fixed_map ,
699- degrees = self .degrees , slice_ = self . canonical_slice ,
697+ self .sequence , domain = self .domain , fixed_map = self .fixed_map ,
698+ degrees = self .degrees , slice_ = None ,
700699 n_elements = self .n_elements , is_combination = False
701700 )
702701
@@ -732,12 +731,13 @@ def _free_values_purified_perm_space(self):
732731 def get_partialled (self , n_elements ):
733732 '''Get a partialled version of this `PermSpace`.'''
734733 if self .is_sliced :
735- raise Exception ("Can't get partial of sliced `PermSpace` directly, "
736- "because the number of items would "
737- "be different. Use `.unsliced` first." )
734+ raise Exception (
735+ "Can't get partial of sliced `PermSpace` directly, because the "
736+ "number of items would be different. Use `.unsliced` first."
737+ )
738738 return PermSpace (
739739 self .sequence , domain = self .domain , fixed_map = self .fixed_map ,
740- degrees = self .degrees , slice_ = self . canonical_slice ,
740+ degrees = self .degrees , slice_ = None ,
741741 is_combination = self .is_combination , n_elements = n_elements
742742 )
743743
0 commit comments