File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ def __str__(self):
166
166
167
167
def qstr (j , link ):
168
168
j += 1
169
- if link .flip :
169
+ if link .isflip :
170
170
s = f"-q{ j :d} "
171
171
else :
172
172
s = f" q{ j :d} "
@@ -189,7 +189,7 @@ def angle(theta, fmt=None):
189
189
else :
190
190
return str (theta * deg ) + "\u00b0 "
191
191
192
- has_qlim = any ([link ._qlim is not None for link in self ])
192
+ has_qlim = any ([link .qlim is not None for link in self ])
193
193
if has_qlim :
194
194
qlim_columns = [
195
195
Column ("q⁻" , headalign = "^" ),
@@ -265,7 +265,7 @@ def angle(theta, fmt=None):
265
265
"base" ,
266
266
base .printline (orient = "rpy/xyz" , fmt = "{:.2g}" , file = None ),
267
267
)
268
- if self . _tool is not None :
268
+ if tool is not None :
269
269
table .row (
270
270
"tool" ,
271
271
tool .printline (orient = "rpy/xyz" , fmt = "{:.2g}" , file = None ),
@@ -828,7 +828,7 @@ def ets(self):
828
828
829
829
# add the links
830
830
for link in self :
831
- ets *= link .ets ()
831
+ ets *= link .ets
832
832
833
833
# optionally add the base transform
834
834
if tool is not None :
You can’t perform that action at this time.
0 commit comments