We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daaa86c commit 85341ecCopy full SHA for 85341ec
2 files changed
src/webapp/gcsutil.py
@@ -297,7 +297,7 @@ def delete_batch_files(
297
self.delete_file(bucket_name=bucket_name, file_name=blob_path)
298
logger.info("Delete successful: gs://%s/%s", bucket_name, blob_path)
299
deleted.append(
300
- {"file": fname, "path": blob_path, "deleted_at": now_iso}
+ {"file": fname, "path": blob_path, "deleted_at": str(now_iso)}
301
)
302
except ValueError:
303
logger.warning(
src/webapp/routers/data.py
@@ -710,7 +710,7 @@ def delete_batch(
710
711
712
# 2) Gather filenames to delete
713
- batch_files: list[str] = (
+ batch_files: list[str] = list(
714
sess.execute(
715
select(FileTable.name).where(
716
FileTable.id == str_to_uuid(batch_id),
0 commit comments