Skip to content

Commit

Permalink
convert path to str
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Jul 31, 2023
1 parent 00a4cbd commit e918614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake/deployment/singularity.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
def get_snakemake_searchpath_mountpoints():
paths = get_snakemake_searchpaths()
base = Path("/mnt/snakemake_searchpaths")
return [base / f"item_{i}" for i in range(len(paths))]
return [str(base / f"item_{i}") for i in range(len(paths))]


class Image:
Expand Down

0 comments on commit e918614

Please sign in to comment.