Skip to content
Snippets Groups Projects
Commit 05010a9a authored by Daniel de Leng's avatar Daniel de Leng
Browse files

Fix incorrect relative paths

parent 90978e76
No related branches found
No related tags found
No related merge requests found
Pipeline #133135 failed
...@@ -11,8 +11,8 @@ import sys ...@@ -11,8 +11,8 @@ import sys
import inspect import inspect
import re import re
sys.path.append('../build/python-api-src') #Unix sys.path.append('build/python-api-src') #Unix
sys.path.append('../build/python-api-src/Release') #Windows sys.path.append('build/python-api-src/Release') #Windows
import commandcenter import commandcenter
def update_pyi_with_docstrings(pyi_path): def update_pyi_with_docstrings(pyi_path):
...@@ -84,6 +84,6 @@ def update_pyi_with_docstrings(pyi_path): ...@@ -84,6 +84,6 @@ def update_pyi_with_docstrings(pyi_path):
# Path to the generated .pyi file # Path to the generated .pyi file
pyi_file_path = '../build/python-api-src/commandcenter.pyi' #Unix pyi_file_path = 'build/python-api-src/commandcenter.pyi' #Unix
#pyi_file_path = 'build/python-api-src/Release/commandcenter.pyi' #Windows #pyi_file_path = 'build/python-api-src/Release/commandcenter.pyi' #Windows
update_pyi_with_docstrings(pyi_file_path) update_pyi_with_docstrings(pyi_file_path)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment