Skip to content

Commit b1d4ddc

Browse files
committed
Use Mixin suffix
was using mixin concept, but the suffix makes pylint happier
1 parent 05331b6 commit b1d4ddc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

roboticstoolbox/robot/DHDynamics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def wrapper_check_rne(*args, **kwargs):
3131
return wrapper_check_rne
3232

3333

34-
class DHDynamics:
34+
class DHDynamicsMixin:
3535

3636
def printdyn(self):
3737
"""

roboticstoolbox/robot/DHRobot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
from roboticstoolbox.backends.PyPlot.functions import \
1717
_plot, _teach, _fellipse, _vellipse, _plot_ellipse, \
1818
_plot2, _teach2
19-
from roboticstoolbox.robot.DHDynamics import DHDynamics
19+
from roboticstoolbox.robot.DHDynamics import DHDynamicsMixin
2020
from ansitable import ANSITable, Column
2121

2222

23-
class DHRobot(Robot, DHDynamics):
23+
class DHRobot(Robot, DHDynamicsMixin):
2424
"""
2525
Class for robots defined using Denavit-Hartenberg notation
2626

0 commit comments

Comments
 (0)