Skip to content

Commit

Permalink
make sure generator outputs full path
Browse files Browse the repository at this point in the history
  • Loading branch information
mbthornton-lbl committed Dec 10, 2024
1 parent ef9171b commit 90f57f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nmdc_automation/run_process/run_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def get_project_files(project_path):
abs_project_path = os.path.abspath(project_path)
for f in os.scandir(abs_project_path):
if f.is_file():
yield f.path
yield os.path.join(abs_project_path, f.name)

@lru_cache(maxsize=None)
def _get_nmdc_materialized():
Expand Down

0 comments on commit 90f57f1

Please sign in to comment.