@@ -556,8 +556,8 @@ def mv(self, root=None, *args, **kwargs):
556556 mvtype_lst = args [0 ].split (' ' )
557557 if len (root_lst ) != len (mvtype_lst ):
558558 raise ValueError ('In Ga.mv() for multiple multivectors and ' +
559- 'multivector types incompatible args ' +
560- str (root_lst ) + ' and ' + str (mvtype_lst ))
559+ 'multivector types incompatible args ' +
560+ str (root_lst ) + ' and ' + str (mvtype_lst ))
561561
562562 mv_lst = []
563563 for (root , mv_type ) in zip (root_lst , mvtype_lst ):
@@ -656,10 +656,10 @@ def sm(self, *args, **kwargs):
656656 def parametric (self , coords ):
657657 if not isinstance (coords , list ):
658658 raise TypeError ('In Ga.parametric coords = ' + str (coords ) +
659- ' is not a list.' )
659+ ' is not a list.' )
660660 if len (coords ) != self .n :
661661 raise ValueError ('In Ga.parametric number of parametric functions' +
662- ' not equal to number of coordinates.' )
662+ ' not equal to number of coordinates.' )
663663
664664 self .par_coords = {}
665665
@@ -816,16 +816,16 @@ def _build_bases(self):
816816
817817 if self .debug :
818818 printer .oprint ('indexes' , self .indexes , 'list(indexes)' , self .indexes_lst ,
819- 'blades' , self .blades , 'list(blades)' , self .blades_lst ,
820- 'blades_to_indexes_dict' , self .blades_to_indexes_dict ,
821- 'indexes_to_blades_dict' , self .indexes_to_blades_dict ,
822- 'blades_to_grades_dict' , self .blades_to_grades_dict ,
823- 'blade_super_scripts' , self .blade_super_scripts )
819+ 'blades' , self .blades , 'list(blades)' , self .blades_lst ,
820+ 'blades_to_indexes_dict' , self .blades_to_indexes_dict ,
821+ 'indexes_to_blades_dict' , self .indexes_to_blades_dict ,
822+ 'blades_to_grades_dict' , self .blades_to_grades_dict ,
823+ 'blade_super_scripts' , self .blade_super_scripts )
824824 if not self .is_ortho :
825825 printer .oprint ('bases' , self .bases , 'list(bases)' , self .bases_lst ,
826- 'bases_to_indexes_dict' , self .bases_to_indexes_dict ,
827- 'indexes_to_bases_dict' , self .indexes_to_bases_dict ,
828- 'bases_to_grades_dict' , self .bases_to_grades_dict )
826+ 'bases_to_indexes_dict' , self .bases_to_indexes_dict ,
827+ 'indexes_to_bases_dict' , self .indexes_to_bases_dict ,
828+ 'bases_to_grades_dict' , self .bases_to_grades_dict )
829829
830830 # create the Mv wrappers
831831 self .mv_blades_lst = [
@@ -2022,7 +2022,7 @@ def __init__(self, *args, **kwargs):
20222022
20232023 if len (u ) != n_base :
20242024 raise ValueError ('In submanifold dimension of base manifold' +
2025- ' not equal to dimension of mapping.' )
2025+ ' not equal to dimension of mapping.' )
20262026 dxdu = []
20272027 for x_i in u :
20282028 tmp = []
0 commit comments