Skip to content

Commit 8fc56d4

Browse files
committed
pre-commit
1 parent 64774fe commit 8fc56d4

2 files changed

Lines changed: 2 additions & 9 deletions

File tree

typings/cfa/dataops/__init__.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from .catalog import datacat as datacat, reportcat as reportcat
1+
from .catalog import datacat as datacat
2+
from .catalog import reportcat as reportcat
23

34
__version__: str
45
__all__: list[str]

typings/cfa/dataops/catalog.pyi

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,18 @@ from typing import Any, Literal, overload
55
import pandas as pd
66
import polars as pl
77

8-
from .reporting.catalog import NotebookEndpoint
9-
10-
118
def get_all_catalogs() -> list[tuple[str, str, str]]: ...
129

13-
1410
class CatalogNamespace(SimpleNamespace):
1511
pass
1612

17-
1813
class DatasetEndpoint:
1914
config_path: str
2015
defaults: dict[str, Any]
2116
config: dict[str, Any]
2217
__ns_str__: str
2318
_ledger_location: dict[str, Any]
2419

25-
2620
class BlobEndpoint:
2721
account: str
2822
container: str
@@ -99,14 +93,12 @@ class BlobEndpoint:
9993
auto_version: bool = False,
10094
) -> None: ...
10195

102-
10396
def dict_to_sn(
10497
d: Any,
10598
defaults: dict[str, Any] | None = None,
10699
ns: str = "",
107100
) -> CatalogNamespace: ...
108101

109-
110102
class DataCatalog(CatalogNamespace):
111103
__namespace_list__: list[str]
112104

0 commit comments

Comments
 (0)