Skip to content

Commit 0c365cc

Browse files
committed
Merge branch 'master' of github.com:petercorke/robotics-toolbox-python
2 parents 0d9675b + 872ff3e commit 0c365cc

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
pip install .[dev,collision,vpython]
3030
pip install pytest-timeout
31-
pytest --timeout=30 --timeout_method thread -s
31+
pytest --timeout=50 --timeout_method thread -s
3232
codecov:
3333
# If all tests pass:
3434
# Run coverage and upload to codecov

roboticstoolbox/models/list.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,7 @@ def make_table(border):
9595
', '.join(robot.keywords)
9696
)
9797

98-
print(str(table))
99-
100-
try:
101-
make_table('thin')
102-
except UnicodeEncodeError:
103-
make_table('ascii')
98+
table.print()
10499

105100

106101
if __name__ == "__main__": # pragma nocover

roboticstoolbox/robot/Dynamics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def dynamics(self):
7777

7878
for j, link in enumerate(self):
7979
table.row(link.name, *link._dyn2list())
80-
print(table)
80+
table.print()
8181

8282
def dynamics_list(self):
8383
"""

0 commit comments

Comments
 (0)