We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9532ea commit abe096eCopy full SHA for abe096e
time_tracker_api/activities/activities_model.py
@@ -1,5 +1,5 @@
1
from dataclasses import dataclass
2
-
+import json
3
from azure.cosmos import PartitionKey
4
5
from commons.data_access_layer.cosmos_db import (
@@ -124,7 +124,6 @@ def find_all_from_blob_storage(
124
if tenant_id_value is None:
125
return []
126
127
- import json
128
fs = FileStream("storageaccounteystr82c5","tt-common-files")
129
result = fs.get_file_stream(file_name)
130
return list(map(function_mapper, json.load(result))) if result is not None else []
0 commit comments