Skip to content

Commit

Permalink
Format with ruff instead of black.
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonspeed committed Jan 26, 2024
1 parent 2df6625 commit 3c4c48c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3684,7 +3684,9 @@ def unpack_table_name(name: str) -> tuple[str | None, str | None, str]:

# ensure conversion to pandas uses the pyarrow extension array option
# so that we can make use of the sql/db export *without* copying data
res: int | None = self.to_pandas(use_pyarrow_extension_array=True,).to_sql(
res: int | None = self.to_pandas(
use_pyarrow_extension_array=True,
).to_sql(
name=unpacked_table_name,
schema=db_schema,
con=engine_sa,
Expand Down

0 comments on commit 3c4c48c

Please sign in to comment.