From 282a42589f0ede2924d87bb491ca7481be7cbcbb Mon Sep 17 00:00:00 2001 From: Andrew White Date: Mon, 27 Jul 2026 07:29:45 -0500 Subject: [PATCH] fix: import graspsampling before adding project root to sys.path --- graspsampling-py-defgraspsim/tests/context.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graspsampling-py-defgraspsim/tests/context.py b/graspsampling-py-defgraspsim/tests/context.py index 3593db1..89b64ea 100644 --- a/graspsampling-py-defgraspsim/tests/context.py +++ b/graspsampling-py-defgraspsim/tests/context.py @@ -19,8 +19,9 @@ # OTHER DEALINGS IN THE SOFTWARE. """Set the proper path to the graspsampling module.""" -import graspsampling import os import sys sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) + +import graspsampling