Skip to content

Commit 202a643

Browse files
authored
remove some unnecessary api_version args (#296)
1 parent e2a18d4 commit 202a643

File tree

1 file changed

+2
-4
lines changed
  • spec/API_specification/dataframe_api

1 file changed

+2
-4
lines changed

spec/API_specification/dataframe_api/typing.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,19 +114,18 @@ def column_from_sequence(
114114
*,
115115
dtype: Any,
116116
name: str = "",
117-
api_version: str | None = None,
118117
) -> Column:
119118
...
120119

121120
@staticmethod
122121
def dataframe_from_dict(
123-
data: Mapping[str, Column], *, api_version: str | None = None
122+
data: Mapping[str, Column]
124123
) -> DataFrame:
125124
...
126125

127126
@staticmethod
128127
def column_from_1d_array(
129-
array: Any, *, dtype: Any, name: str = "", api_version: str | None = None
128+
array: Any, *, dtype: Any, name: str = ""
130129
) -> Column:
131130
...
132131

@@ -136,7 +135,6 @@ def dataframe_from_2d_array(
136135
*,
137136
names: Sequence[str],
138137
dtypes: Mapping[str, Any],
139-
api_version: str | None = None,
140138
) -> DataFrame:
141139
...
142140

0 commit comments

Comments
 (0)