Skip to content

Commit 4e965e5

Browse files
committed
Change the default line length for the show() method to 120 characters
1 parent 1d3889f commit 4e965e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fairgraph/kgobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ def by_name(
840840
warn("Multiple objects with the same name, returning the first. " "Use 'all=True' to retrieve them all")
841841
return objects[0]
842842

843-
def show(self, max_width: Optional[int] = None, include_empty_properties=False):
843+
def show(self, max_width: Optional[int] = 120, include_empty_properties=False):
844844
"""
845845
Print a table showing the metadata contained in this object.
846846
"""

0 commit comments

Comments
 (0)