Skip to content

Commit

Permalink
Fixed #27
Browse files Browse the repository at this point in the history
  • Loading branch information
senthurayyappan committed Jan 17, 2025
1 parent 3737d1a commit e79b6b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion onshape_robotics_toolkit/models/joint.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def from_xml(cls, element: ET.Element) -> "RevoluteJoint":
mimic_element = element.find("mimic")
mimic = JointMimic.from_xml(mimic_element) if mimic_element is not None else None

return cls(name, parent, child, origin, limits, axis, dynamics, mimic)
return cls(name, parent, child, origin, axis, limits, dynamics, mimic)

@property
def joint_type(self) -> str:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "onshape-robotics-toolkit"
version = "0.1.7"
version = "0.1.8"
description = "A python library to facilitate interaction with Onshape's REST API"
authors = ["Senthur Ayyappan <[email protected]>"]
repository = "https://github.com/neurobionics/onshape-robotics-toolkit"
Expand Down

0 comments on commit e79b6b2

Please sign in to comment.