Skip to content

Commit

Permalink
skip writing file in doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
EdAbati committed Oct 18, 2024
1 parent 20241b5 commit a0c7943
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions narwhals/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,9 @@ def write_parquet(self, file: str | Path | BytesIO) -> Any:
We can then pass either pandas, Polars or PyArrow to `func`:
>>> func(df_pd)
>>> func(df_pl)
>>> func(df_pa)
>>> func(df_pd) # doctest:+SKIP
>>> func(df_pl) # doctest:+SKIP
>>> func(df_pa) # doctest:+SKIP
"""
self._compliant_frame.write_parquet(file)

Expand Down

0 comments on commit a0c7943

Please sign in to comment.