Skip to content

Commit 1b9cc4f

Browse files
committed
mypy
1 parent 796ff62 commit 1b9cc4f

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

spec/API_specification/dataframe_api/_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ def is_dtype(dtype: Any, kind: str | tuple[str, ...]) -> bool:
157157

158158

159159
class SupportsDataFrameAPI(Protocol):
160-
def __dataframe_consortium_standard__(self) -> DataFrameType:
160+
def __dataframe_consortium_standard__(self, *, api_version: str) -> DataFrameType:
161161
...
162162

163163
class SupportsColumnAPI(Protocol):
164-
def __column_consortium_standard__(self) -> ColumnType:
164+
def __column_consortium_standard__(self, *, api_version: str) -> ColumnType:
165165
...
166166

167167

0 commit comments

Comments
 (0)