ruff format fix
Code Quality Pipeline / code-quality (pull_request) Successful in 29s
Test Python Package / test (pull_request) Successful in 35s

This commit is contained in:
Brian Bjarke Jensen
2025-09-18 19:38:22 +02:00
parent 3ab8da92fb
commit 2e9330949c
@@ -113,7 +113,12 @@ class MinioAdapter(
self.logger.debug(res)
return res
def _put(self, object_name: str, data: BytesIO, content_type: str = "application/octet-stream") -> None:
def _put(
self,
object_name: str,
data: BytesIO,
content_type: str = "application/octet-stream",
) -> None:
"""Put an object into the Minio bucket."""
# Check input
if not isinstance(object_name, str) or len(object_name) == 0: