Skip to content

Commit

Permalink
Add exports for object store to match internal
Browse files Browse the repository at this point in the history
  • Loading branch information
timsaucer committed Jul 27, 2024
1 parent 7695801 commit 6a865fb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/datafusion/object_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@

from ._internal import object_store

AmazonS3 = object_store.AmazonS3
GoogleCloud = object_store.GoogleCloud
LocalFileSystem = object_store.LocalFileSystem
MicrosoftAzure = object_store.MicrosoftAzure

__all__ = [
"AmazonS3",
"GoogleCloud",
"LocalFileSystem",
"MicrosoftAzure",
]


def __getattr__(name):
return getattr(object_store, name)

0 comments on commit 6a865fb

Please sign in to comment.