Skip to content
Snippets Groups Projects
Commit d74b177d authored by Schiffer, Christian's avatar Schiffer, Christian
Browse files

Remove root directory from prediction file paths

parent 8dc2795f
No related branches found
No related tags found
No related merge requests found
......@@ -198,9 +198,11 @@ class Predictions(Resource):
return
prediction_files = glob.glob(os.path.join(prediction_dir, "*.hdf5"))
prediction_files = [f.replace(WORK_DIR_ROOT, "") for f in prediction_files]
return prediction_files
# -----------------------------------
# Main entry point
# -----------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment