This commit is contained in:
deathbybandaid 2023-01-06 19:40:53 -05:00
parent 8d88c5e113
commit b257c0ceee

View File

@ -64,7 +64,7 @@ def do_file_search(arr_file_path):
return None return None
if not len(response_json): if not len(response_json):
return None return None
DBids = [x["DB"] for x in response_json if "DB" in list(response_json[x].keys())] DBids = [response_json[x]["DB"] for x in response_json if "DB" in list(response_json[x].keys())]
print(DBids) print(DBids)
DBid = DBids[0] DBid = DBids[0]
return DBid return DBid