From e87ccb983afd5e11fc0db478e1395a418f942291 Mon Sep 17 00:00:00 2001 From: Saulo Aflitos Date: Mon, 22 Jan 2024 15:04:12 +0100 Subject: [PATCH] fix concat error --- snakemake_storage_plugin_azure/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/snakemake_storage_plugin_azure/__init__.py b/snakemake_storage_plugin_azure/__init__.py index c2c6074..bbf9f2f 100644 --- a/snakemake_storage_plugin_azure/__init__.py +++ b/snakemake_storage_plugin_azure/__init__.py @@ -86,10 +86,7 @@ class StorageProviderSettings(StorageProviderSettingsBase): access_key: Optional[str] = field( default=None, metadata={ - "help": ( - "Azure Blob Storage Account Access Key Credential.", - "If set, takes precedence over sas_token credential.", - ), + "help": "Azure Blob Storage Account Access Key Credential.\nIf set, takes precedence over sas_token credential.", "env_var": False, }, )