Skip to content

Commit ba6cd87

Browse files
gab23rgabriel
and
gabriel
authored
add __all__ (#1797)
Signed-off-by: gabriel <[email protected]> Co-authored-by: gabriel <[email protected]>
1 parent f277caa commit ba6cd87

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

pandera/polars.py

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""A flexible and expressive polars validation library for Python."""
22

3-
# pylint: disable=unused-import
43
from pandera import errors
54
from pandera.api.checks import Check
65
from pandera.api.dataframe.model_components import (
@@ -16,3 +15,20 @@
1615
from pandera.decorators import check_input, check_io, check_output, check_types
1716

1817
register_polars_backends()
18+
19+
20+
__all__ = [
21+
"check_input",
22+
"check_io",
23+
"check_output",
24+
"check_types",
25+
"check",
26+
"Check",
27+
"Column",
28+
"dataframe_check",
29+
"DataFrameModel",
30+
"DataFrameSchema",
31+
"errors",
32+
"Field",
33+
"PolarsData",
34+
]

0 commit comments

Comments
 (0)