Skip to content

Commit

Permalink
fix typing of dataframe_from_2d_array (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli authored Oct 31, 2023
1 parent c4ab5b4 commit eafe462
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions spec/API_specification/dataframe_api/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
TYPE_CHECKING,
Any,
Literal,
Mapping,
Dict,
Protocol,
Sequence,
Union,
Expand Down Expand Up @@ -138,8 +138,7 @@ def dataframe_from_2d_array(
self,
array: Any,
*,
names: Sequence[str],
schema: Mapping[str, DType],
schema: Dict[str, DType],
) -> DataFrame:
...

Expand Down

0 comments on commit eafe462

Please sign in to comment.