Skip to content

Commit

Permalink
use explicit package name
Browse files Browse the repository at this point in the history
  • Loading branch information
roeger committed Dec 18, 2024
1 parent 936fe46 commit 3f18b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion up_fast_downward/fast_downward.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(

def _base_cmd(self, plan_filename: str):
loc = "downward/fast-downward.py"
downward_res = importlib.resources.files(__name__).joinpath(loc)
downward_res = importlib.resources.files("up_fast_downward").joinpath(loc)
with importlib.resources.as_file(downward_res) as downward:
# This will clean up any temporary files created for accessing
# downward once we leave the with statement. Since the resource is
Expand Down

0 comments on commit 3f18b50

Please sign in to comment.