Skip to content

Commit

Permalink
Remove dependency on clearpath_generator_common; doing so creates a c…
Browse files Browse the repository at this point in the history
…ircular dependency. Instead use the system level envar
  • Loading branch information
civerachb-cpr committed Nov 4, 2024
1 parent 37941e4 commit a093432
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion clearpath_config/manipulators/types/arms.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import os
from typing import List

from clearpath_config.common.types.accessory import Accessory
Expand All @@ -33,7 +34,9 @@
from clearpath_config.common.types.port import Port
from clearpath_config.manipulators.types.grippers import Gripper
from clearpath_config.manipulators.types.manipulator import BaseManipulator
from clearpath_generator_common.ros import ROS_DISTRO


ROS_DISTRO = os.environ.get('ROS_DISTRO', 'jazzy')


class BaseArm(BaseManipulator):
Expand Down

0 comments on commit a093432

Please sign in to comment.