File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -676,13 +676,13 @@ def basis_vectors(self):
676676
677677 def _build_basis_base_symbol (self , base_index ):
678678 """ Build a symbol used for the `base_rep` from the given tuple """
679- symbol_str = ( ' ' .join ([str (self .basis [i ]) + '*' for i in base_index ]))[: - 1 ]
679+ symbol_str = '* ' .join ([str (self .basis [i ]) for i in base_index ])
680680 return Symbol (symbol_str , commutative = False )
681681
682682 def _build_basis_blade_symbol (self , base_index ):
683683 """ Build a symbol used for the `blade_rep` from the given tuple """
684684 if self .wedge_print :
685- symbol_str = ( ' ' .join ([str (self .basis [i ]) + '^' for i in base_index ]))[: - 1 ]
685+ symbol_str = '^ ' .join ([str (self .basis [i ]) for i in base_index ])
686686 else :
687687 sub_str = []
688688 root_str = []
You can’t perform that action at this time.
0 commit comments