Skip to content

Commit

Permalink
Fix typo in Skeleton.__repr__ (#1200)
Browse files Browse the repository at this point in the history
  • Loading branch information
roomrys authored Mar 1, 2023
1 parent 66af740 commit c636d96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sleap/skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ def __init__(self, name: str = None):
def __repr__(self) -> str:
"""Return full description of the skeleton."""
return (
f"Skeleton(name='{self.name}', ",
f"description='{self.description}', ",
f"Skeleton(name='{self.name}', "
f"description='{self.description}', "
f"nodes={self.node_names}, "
f"edges={self.edge_names}, "
f"symmetries={self.symmetry_names}"
")",
")"
)

def __str__(self) -> str:
Expand Down

0 comments on commit c636d96

Please sign in to comment.