Skip to content

Commit e8ae37d

Browse files
committed
:class: changed to :obj: for builtins
1 parent 246979e commit e8ae37d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/compas_fab/robots/configuration.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ class Configuration(object):
1616
1717
Parameters
1818
----------
19-
values : :class:`list` of :class:`float`
19+
values : :obj:`list` of :obj:`float`
2020
Joint values expressed in radians or meters, depending on the respective
2121
type.
22-
types : :class:`list` of :attr:`compas.robots.Joint.SUPPORTED_TYPES`
22+
types : :obj:`list` of :attr:`compas.robots.Joint.SUPPORTED_TYPES`
2323
Joint types, e.g. a list of :attr:`compas.robots.Joint.REVOLUTE` for
2424
revolute joints.
25-
joint_names : :obj:`list` of :class:`str`, optional
25+
joint_names : :obj:`list` of :obj:`str`, optional
2626
List of joint names.
2727
2828
Attributes
@@ -139,7 +139,7 @@ def to_data(self):
139139
140140
Returns
141141
-------
142-
:class:`dict`
142+
:obj:`dict`
143143
The data representing the configuration.
144144
"""
145145
return self.data
@@ -196,7 +196,7 @@ def scale(self, scale_factor):
196196
197197
Parameters
198198
----------
199-
scale_factor : :class:`float`
199+
scale_factor : :obj:`float`
200200
Scale factor.
201201
202202
Returns
@@ -219,7 +219,7 @@ def scaled(self, scale_factor):
219219
220220
Parameters
221221
----------
222-
scale_factor : :class:`float`
222+
scale_factor : :obj:`float`
223223
Scale factor
224224
225225
Returns

0 commit comments

Comments
 (0)