added return

This commit is contained in:
Manuel Hude 2020-12-06 15:00:17 +01:00
parent bd5247f21e
commit 7eb728968a

View File

@ -64,6 +64,7 @@ class MongoDBService:
try: try:
resp = col.delete_one({"identifier": identifier}) resp = col.delete_one({"identifier": identifier})
return resp
except: except:
print("Could not delete Metadata") print("Could not delete Metadata")
return resp return resp