Skip to content

Commit 8fc57ec

Browse files
committed
Fixes after @beverlylytle's review
1 parent bcc4a34 commit 8fc57ec

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/compas_fab/robots/robot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ def basic(cls, name, joints=None, links=None, materials=None, **kwargs):
8080
Name of the robot
8181
joints : :class:`compas.robots.Joint`, optional
8282
links : :class:`compas.robots.Link`, optional
83-
materials : `compas.robots.Material`, optional
83+
materials : :class:`compas.robots.Material`, optional
8484
**kwargs
8585
Keyword arguments passed to :class:`compas.robots.RobotModel`
86-
accessible from `cls.model.attr`
86+
accessible from :attr:`Robot.model.attr`
8787
8888
Returns
8989
-------

tests/robots/test_robot.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import os
33

44
import pytest
5-
65
from compas.robots import RobotModel
76

87
from compas_fab.robots import Robot
@@ -43,7 +42,6 @@ def ur5_links():
4342

4443
def test_basic_name_only():
4544
robot = Robot.basic('testbot')
46-
print('hi')
4745
assert robot.artist is None
4846

4947

0 commit comments

Comments
 (0)