Skip to content

Commit

Permalink
add desc to __str__ method of term
Browse files Browse the repository at this point in the history
  • Loading branch information
srmnitc committed Jul 10, 2024
1 parent a93d0ac commit 0c5a650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atomrdf/network/term.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def toPython(self):
return self.uri

def __repr__(self):
return str(self.name)
return str(self.name + '\n' + self.description)

def _clean_datatype(self, r):
if r == "str":
Expand Down

0 comments on commit 0c5a650

Please sign in to comment.