Skip to content

Commit

Permalink
Make: Path to Python module directory (#101)
Browse files Browse the repository at this point in the history
The python module has been moved from src to python.
  • Loading branch information
vitaut authored May 13, 2024
1 parent b8daf5a commit 51bd671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def main(
script_dir = os.path.dirname(os.path.abspath(__file__))
project_dir = os.path.dirname(script_dir)
sys.path.append(f"{script_dir}/login")
sys.path.append(os.path.join(project_dir, "src"))
sys.path.append(os.path.join(project_dir, "python"))

class_ = locate(class_name)
stats = bench_parallel(
Expand Down

0 comments on commit 51bd671

Please sign in to comment.