diff options
Diffstat (limited to '')
| -rw-r--r-- | python/examples/solve.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
| 4 | # folder containing nissy_python_module.so | 4 | # folder containing nissy_python_module.so |
| 5 | 5 | ||
| 6 | # Append the main folder to the python path so we can load the module | 6 | # Append the main folder to the python path so we can load the module |
| 7 | from sys import path | 7 | import sys, os |
| 8 | path.append("./") | 8 | sys.path.append(os.getcwd()) |
| 9 | 9 | ||
| 10 | # Import with a nicer name | 10 | # Import with a nicer name |
| 11 | import nissy_python_module as nissy | 11 | import nissy_python_module as nissy |
