diff --git a/python_modules/libraries/dagster-azure/dagster_azure/adls2/utils.py b/python_modules/libraries/dagster-azure/dagster_azure/adls2/utils.py index 94278d8dc8dd0..668c527ab087c 100644 --- a/python_modules/libraries/dagster-azure/dagster_azure/adls2/utils.py +++ b/python_modules/libraries/dagster-azure/dagster_azure/adls2/utils.py @@ -2,7 +2,7 @@ try: # Centralise Azure imports here so we only need to warn in one place - from azure.core.exceptions import ResourceNotFoundError + from azure.core.exceptions import ResourceNotFoundError # pylint: disable=unused-import from azure.storage.filedatalake import DataLakeServiceClient except ImportError: msg = ( diff --git a/python_modules/libraries/dagster-azure/dagster_azure/blob/utils.py b/python_modules/libraries/dagster-azure/dagster_azure/blob/utils.py index 477c446348bbd..76e39b6006132 100644 --- a/python_modules/libraries/dagster-azure/dagster_azure/blob/utils.py +++ b/python_modules/libraries/dagster-azure/dagster_azure/blob/utils.py @@ -2,8 +2,8 @@ try: # Centralise Azure imports here so we only need to warn in one place - from azure.core.exceptions import ResourceNotFoundError - from azure.storage.blob import generate_blob_sas, BlobServiceClient + from azure.core.exceptions import ResourceNotFoundError # pylint: disable=unused-import + from azure.storage.blob import generate_blob_sas, BlobServiceClient # pylint: disable=unused-import except ImportError: msg = ( "Could not import required Azure objects. This probably means you have an old version "