From 248e463127520ac6909b931b9ef5b2430387ea8c Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Tue, 5 Mar 2024 17:02:06 -0500 Subject: [PATCH] Fix typo --- backend/btrixcloud/storages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/btrixcloud/storages.py b/backend/btrixcloud/storages.py index 9af45be9f..34955b64a 100644 --- a/backend/btrixcloud/storages.py +++ b/backend/btrixcloud/storages.py @@ -600,7 +600,7 @@ def organize_based_on_instance_number( wacz_url = f"http://host.docker.internal:30870{wacz_url}" with RemoteZip(wacz_url) as remote_zip: - log_files: List[Zipinfo] = [ + log_files: List[ZipInfo] = [ f for f in remote_zip.infolist() if f.filename.startswith("logs/") and not f.is_dir()