Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Mar 15, 2024
1 parent 05527fc commit 07e9459
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions dask_snowflake/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@

@delayed
def write_snowflake(
df: pd.DataFrame,
name: str,
connection_kwargs: dict,
write_pandas_kwargs: dict = {}
df: pd.DataFrame, name: str, connection_kwargs: dict, write_pandas_kwargs: dict = {}
):
connection_kwargs = {
**{"application": dask.config.get("snowflake.partner", "dask")},
Expand All @@ -40,7 +37,7 @@ def write_snowflake(
# NOTE: since ensure_db_exists uses uppercase for the table name
table_name=name.upper(),
quote_identifiers=False,
**write_pandas_kwargs
**write_pandas_kwargs,
)


Expand Down

0 comments on commit 07e9459

Please sign in to comment.