Skip to content

Commit 3581e66

Browse files
committed
Exposing FFI to python
1 parent f6b671c commit 3581e66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/datafusion/context.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ class CatalogProviderExportable(Protocol):
8383
8484
https://docs.rs/datafusion/latest/datafusion/catalog/trait.CatalogProvider.html
8585
"""
86+
8687
def __datafusion_catalog_provider__(self) -> object: ...
8788

8889

@@ -751,7 +752,7 @@ def deregister_table(self, name: str) -> None:
751752
self.ctx.deregister_table(name)
752753

753754
def register_catalog_provider(
754-
self, name: str, provider: CatalogProviderExportable
755+
self, name: str, provider: CatalogProviderExportable
755756
) -> None:
756757
"""Register a catalog provider."""
757758
self.ctx.register_catalog_provider(name, provider)

0 commit comments

Comments
 (0)