Open FaehlingT opened 1 year ago
Hi @FaehlingT, we have a line of code within the function that handles None input by changing it into an empty string in order to work with os.path.join()
.
It was added to the repo in PR #1050 on 8/28, so please check you've updated your local version of ark-analysis and try to run the function again.
Describe the bug
The function
plot_utils.create_mantis_dir
fails whenimg_sub_folder = None
because it can'tos.path.join
with it then. I think in the function this needs to be added, as img_sub_folder=None is explicitly allowed in the rest of the notebook. Thanks!