Skip to content

Commit

Permalink
Remove unsupported type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonbb committed Dec 4, 2023
1 parent 494eefc commit 046942b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/tape/ensemble_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,13 +458,13 @@ def persist(self, **kwargs):

def set_index(
self,
other: str | pd.Series,
drop: bool = True,
sorted: bool = False,
npartitions: int | Literal["auto"] | None = None,
divisions: Sequence | None = None,
inplace: bool = False,
sort: bool = True,
other,
drop=True,
sorted=False,
npartitions=None,
divisions=None,
inplace=False,
sort=True,
**kwargs,
):
"""Set the DataFrame index (row labels) using an existing column.
Expand Down

0 comments on commit 046942b

Please sign in to comment.