Skip to content

Commit

Permalink
change string repr
Browse files Browse the repository at this point in the history
  • Loading branch information
kinnala committed Jul 16, 2024
1 parent 8b46b60 commit ef4b672
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skfem/assembly/basis/composite_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ def split(self, x):
def __repr__(self):
rep = ""
rep += "<skfem CompositeBasis object>\n"
rep += " {}\n".format(repr(self.bases))
rep += " Number of DOFs: {}\n".format(self.N)
rep += " Consist of: {}\n".format(repr(self.bases))
return rep

def interpolate(self, x):
Expand Down

0 comments on commit ef4b672

Please sign in to comment.