Skip to content

Commit f35a3f4

Browse files
committed
Fix __all__ statements
1 parent b768af7 commit f35a3f4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pointblank/column.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
from dataclasses import dataclass
44

5+
__all__ = ["col"]
6+
57

68
@dataclass
79
class Column:

pointblank/validate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
_check_boolean_input,
5252
)
5353

54-
__all__ = ["Validate", "load_dataset", "col"]
54+
__all__ = ["Validate", "load_dataset"]
5555

5656

5757
def load_dataset(

0 commit comments

Comments
 (0)