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

Fixed wildcard

parent aba78cdd
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,7 @@ class Predictions(Resource):
if annotations:
# Search for annotation files
prediction_files = glob.glob(os.path.join(prediction_dir, ".coordinates.json"))
prediction_files = glob.glob(os.path.join(prediction_dir, "*.coordinates.json"))
for prediction_file in prediction_files:
with open(prediction_file, "r") as f:
prediction_files.append(
......
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