From 6154d027ae12bf5756b9f91898e544abfe783e7f Mon Sep 17 00:00:00 2001 From: Tim Verbelen Date: Mon, 5 Feb 2024 16:52:40 +0100 Subject: [PATCH] fix overwriting _XSLOCOBOT_MODELS --- .../interbotix_xs_modules/xs_common/xs_common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interbotix_xs_toolbox/interbotix_xs_modules/interbotix_xs_modules/xs_common/xs_common.py b/interbotix_xs_toolbox/interbotix_xs_modules/interbotix_xs_modules/xs_common/xs_common.py index 7b369bda..602ec727 100644 --- a/interbotix_xs_toolbox/interbotix_xs_modules/interbotix_xs_modules/xs_common/xs_common.py +++ b/interbotix_xs_toolbox/interbotix_xs_modules/interbotix_xs_modules/xs_common/xs_common.py @@ -54,7 +54,7 @@ ) # Tuple of valid Interbotix Turret models -_XSLOCOBOT_MODELS = ( +_XSTURRET_MODELS = ( 'pxxls_cam', 'pxxls', 'vxxmd', @@ -76,7 +76,7 @@ def get_interbotix_xslocobot_models() -> Tuple[str]: def get_interbotix_xsturret_models() -> Tuple[str]: """Get the tuple of valid Interbotix Turret models.""" - return _XSLOCOBOT_MODELS + return _XSTURRET_MODELS def get_interbotix_xsarm_joints(robot_model: str) -> List[str]: