From 9b039d6c1d8dfc649552eb3a2658d39e3f4006f6 Mon Sep 17 00:00:00 2001 From: Chetan Kini Date: Thu, 19 Dec 2024 13:16:16 -0500 Subject: [PATCH] some more --- .../fluent/pandas_azure_blob_storage_datasource.py | 5 +++++ great_expectations/datasource/fluent/pandas_datasource.py | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/great_expectations/datasource/fluent/pandas_azure_blob_storage_datasource.py b/great_expectations/datasource/fluent/pandas_azure_blob_storage_datasource.py index ec4f01e033c0..8d59c6024a58 100644 --- a/great_expectations/datasource/fluent/pandas_azure_blob_storage_datasource.py +++ b/great_expectations/datasource/fluent/pandas_azure_blob_storage_datasource.py @@ -35,6 +35,11 @@ class PandasAzureBlobStorageDatasourceError(PandasDatasourceError): @public_api class PandasAzureBlobStorageDatasource(_PandasFilePathDatasource): + """ + PandasAzureBlobStorageDatasource is a PandasDatasource that uses Azure Blob Storage as a + data store. + """ + # class attributes data_connector_type: ClassVar[Type[AzureBlobStorageDataConnector]] = ( AzureBlobStorageDataConnector diff --git a/great_expectations/datasource/fluent/pandas_datasource.py b/great_expectations/datasource/fluent/pandas_datasource.py index 83c9bfc955d9..aa61a0fff865 100644 --- a/great_expectations/datasource/fluent/pandas_datasource.py +++ b/great_expectations/datasource/fluent/pandas_datasource.py @@ -85,6 +85,10 @@ class PandasDatasourceError(Exception): @public_api class _PandasDataAsset(DataAsset): + """ + A Pandas DataAsset is a DataAsset that is backed by a Pandas DataFrame. + """ + _EXCLUDE_FROM_READER_OPTIONS: ClassVar[Set[str]] = { "batch_definitions", "batch_metadata",