Skip to content

Commit 209ddc6

Browse files
tetovgonzalocasas
andauthored
Wording of docstring for __str__
Co-Authored-By: Gonzalo Casas <[email protected]>
1 parent 8a10877 commit 209ddc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas_fab/robots/trajectory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(self, values=None, types=None, velocities=None, accelerations=None,
4848
self.time_from_start = time_from_start or Duration(0, 0)
4949

5050
def __str__(self):
51-
"""Return a nicely printable representation of :class:`JointTrajectoryPoint`."""
51+
"""Return a human-readable string representation of the instance."""
5252
vs = '%.' + self._precision
5353
return 'JointTrajectoryPoint(({}), {}, ({}), ({}), ({}), {})'.format(
5454
', '.join(vs % i for i in self.values),

0 commit comments

Comments
 (0)