SIENTIAPDE-1241: Linted files

This commit is contained in:
Kou-Kinoshita
2025-10-29 11:57:40 -03:00
parent 5e763a8a64
commit 1f6765dc86
2 changed files with 7 additions and 5 deletions

View File

@@ -82,8 +82,8 @@ def upload_to_minio(source_path: Path) -> str:
object_name = f'test-model-data-{timestamp}.csv'
target_uri = f'{MINIO_ALIAS}/{MINIO_BUCKET}/{object_name}'
subprocess.run(
['mc', 'cp', str(source_path), target_uri],
subprocess.run( # noqa: S603
['mc', 'cp', str(source_path), target_uri], # noqa: S607
check=True,
)
return object_name