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/move.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'python/examples/move.py') diff --git a/python/examples/move.py b/python/examples/move.py index 3cdd606..9c7a756 100644 --- a/python/examples/move.py +++ b/python/examples/move.py @@ -1,8 +1,9 @@ # Small example of nissy_python_module usage # See the solve.py example for more details on how this works -from sys import path -path.append("./") +import os, sys + +sys.path.append(os.getcwd()) import nissy_python_module as nissy cube = nissy.applymoves(nissy.solved_cube, "R' U' F"); -- cgit v1.3