Skip to content

Commit 20b9617

Browse files
author
Marco Gorelli
committed
Remove commas after kwargs from autoformatting
1 parent e161cf6 commit 20b9617

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pandas/core/frame.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2096,7 +2096,7 @@ def to_stata(
20962096
data_label=data_label,
20972097
write_index=write_index,
20982098
variable_labels=variable_labels,
2099-
**kwargs,
2099+
**kwargs
21002100
)
21012101
writer.write_file()
21022102

@@ -2122,7 +2122,7 @@ def to_parquet(
21222122
compression="snappy",
21232123
index=None,
21242124
partition_cols=None,
2125-
**kwargs,
2125+
**kwargs
21262126
):
21272127
"""
21282128
Write a DataFrame to the binary parquet format.
@@ -2198,7 +2198,7 @@ def to_parquet(
21982198
compression=compression,
21992199
index=index,
22002200
partition_cols=partition_cols,
2201-
**kwargs,
2201+
**kwargs
22022202
)
22032203

22042204
@Substitution(
@@ -4172,7 +4172,7 @@ def fillna(
41724172
inplace=False,
41734173
limit=None,
41744174
downcast=None,
4175-
**kwargs,
4175+
**kwargs
41764176
):
41774177
return super().fillna(
41784178
value=value,
@@ -4181,7 +4181,7 @@ def fillna(
41814181
inplace=inplace,
41824182
limit=limit,
41834183
downcast=downcast,
4184-
**kwargs,
4184+
**kwargs
41854185
)
41864186

41874187
@Appender(_shared_docs["replace"] % _shared_doc_kwargs)

0 commit comments

Comments
 (0)