We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd7cd64 commit d25a912Copy full SHA for d25a912
roboticstoolbox/models/list.py
@@ -95,12 +95,7 @@ def make_table(border):
95
', '.join(robot.keywords)
96
)
97
98
- print(str(table))
99
-
100
- try:
101
- make_table('thin')
102
- except UnicodeEncodeError:
103
- make_table('ascii')
+ table.print()
104
105
106
if __name__ == "__main__": # pragma nocover
roboticstoolbox/robot/Dynamics.py
@@ -77,7 +77,7 @@ def dynamics(self):
77
78
for j, link in enumerate(self):
79
table.row(link.name, *link._dyn2list())
80
- print(table)
81
82
def dynamics_list(self):
83
"""
0 commit comments