Skip to content

Commit

Permalink
scripts: fix ModuleNotFoundError
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Jan 9, 2025
1 parent a324fa4 commit 4e48a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/check_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def main() -> None: # noqa: D103
py_bin = which('python')

# Ensure this module is in PYTHONPATH
sys.path = [str(project.parent), str(project), *sys.path]
sys.path = [str(project.parent.parent), *sys.path]
print(f'PYTHONPATH: {sys.path}')

if not py_bin:
Expand Down

0 comments on commit 4e48a9a

Please sign in to comment.