Skip to content

Commit

Permalink
add type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Genesis929 committed Dec 18, 2023
1 parent eba4732 commit 9fe0fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigframes/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,7 @@ def to_csv(self, path_or_buf=None, **kwargs) -> typing.Optional[str]:
return self.to_pandas().to_csv(path_or_buf, **kwargs)

def to_dict(self, into: type[dict] = dict) -> typing.Mapping:
return typing.cast(dict, self.to_pandas().to_dict(into))
return typing.cast(dict, self.to_pandas().to_dict(into)) # type: ignore

def to_excel(self, excel_writer, sheet_name="Sheet1", **kwargs) -> None:
return self.to_pandas().to_excel(excel_writer, sheet_name, **kwargs)
Expand Down

0 comments on commit 9fe0fe0

Please sign in to comment.