From 9c5c7af7abe9e444210ac86b903eee775fc76a84 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 8 Aug 2025 15:17:43 +0200 Subject: Small fixes --- python/examples/solve.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/examples/solve.py') diff --git a/python/examples/solve.py b/python/examples/solve.py index a60c432..e3752fe 100644 --- a/python/examples/solve.py +++ b/python/examples/solve.py @@ -4,8 +4,8 @@ # folder containing nissy_python_module.so # Append the main folder to the python path so we can load the module -from sys import path -path.append("./") +import sys, os +sys.path.append(os.getcwd()) # Import with a nicer name import nissy_python_module as nissy -- cgit v1.3