Skip to content

Commit f197672

Browse files
committed
fixup
1 parent 9e13924 commit f197672

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

spec/API_specification/dataframe_api/column_object.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
from .scalar_object import Scalar
99
from .typing import DType, Namespace, NullType
1010

11-
from .typing import DType, Namespace, NullType, Scalar
12-
1311

1412
__all__ = ["Column"]
1513

spec/API_specification/dataframe_api/scalar_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class Scalar(Protocol):
9-
"""Scalar object
9+
"""Scalar object.
1010
1111
Not meant to be instantiated directly, but rather created via
1212
`:meth:Column.get_value` or one of the column reductions such

spec/API_specification/dataframe_api/typing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
from dataframe_api.groupby_object import Aggregation as AggregationT
1515
from dataframe_api.groupby_object import GroupBy
1616

17+
from .scalar_object import Scalar
18+
1719
if TYPE_CHECKING:
1820
from collections.abc import Sequence
1921

@@ -34,7 +36,6 @@
3436
UInt32,
3537
UInt64,
3638
)
37-
from .scalar_object import Scalar
3839

3940
DType = Union[
4041
Bool,
@@ -181,5 +182,4 @@ def __column_consortium_standard__(
181182
"Scalar",
182183
"SupportsColumnAPI",
183184
"SupportsDataFrameAPI",
184-
"Scalar",
185185
]

0 commit comments

Comments
 (0)