formatting

This commit is contained in:
Chris Pietschmann 2025-02-18 15:19:35 -05:00
parent a29f83c4e7
commit 7404494772
2 changed files with 0 additions and 3 deletions

View File

@ -29,7 +29,6 @@ from azure.storage.blob import BlobServiceClient
from azure.core.exceptions import ResourceNotFoundError
class StorageProvider(ABC):
@abstractmethod
def get_file(self, file_path: str) -> str:

View File

@ -280,7 +280,6 @@ class TestGCSStorageProvider:
assert self.Storage.bucket.get_blob(self.filename_extra) == None
class TestAzureStorageProvider:
@pytest.fixture(autouse=True)
def setup_storage(self, monkeypatch):
@ -310,7 +309,6 @@ class TestAzureStorageProvider:
azure.storage.blob, "BlobClient", lambda *args, **kwargs: mock_blob_client
)
self.Storage = provider.AzureStorageProvider()
self.Storage.endpoint = "https://myaccount.blob.core.windows.net"
self.Storage.container_name = "my-container"