Skip to content

Commit

Permalink
some more
Browse files Browse the repository at this point in the history
  • Loading branch information
cdkini committed Dec 19, 2024
1 parent 81454a3 commit 9b039d6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions great_expectations/datasource/fluent/pandas_datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 9b039d6

Please sign in to comment.