File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2096,7 +2096,7 @@ def to_stata(
2096
2096
data_label = data_label ,
2097
2097
write_index = write_index ,
2098
2098
variable_labels = variable_labels ,
2099
- ** kwargs ,
2099
+ ** kwargs
2100
2100
)
2101
2101
writer .write_file ()
2102
2102
@@ -2122,7 +2122,7 @@ def to_parquet(
2122
2122
compression = "snappy" ,
2123
2123
index = None ,
2124
2124
partition_cols = None ,
2125
- ** kwargs ,
2125
+ ** kwargs
2126
2126
):
2127
2127
"""
2128
2128
Write a DataFrame to the binary parquet format.
@@ -2198,7 +2198,7 @@ def to_parquet(
2198
2198
compression = compression ,
2199
2199
index = index ,
2200
2200
partition_cols = partition_cols ,
2201
- ** kwargs ,
2201
+ ** kwargs
2202
2202
)
2203
2203
2204
2204
@Substitution (
@@ -4172,7 +4172,7 @@ def fillna(
4172
4172
inplace = False ,
4173
4173
limit = None ,
4174
4174
downcast = None ,
4175
- ** kwargs ,
4175
+ ** kwargs
4176
4176
):
4177
4177
return super ().fillna (
4178
4178
value = value ,
@@ -4181,7 +4181,7 @@ def fillna(
4181
4181
inplace = inplace ,
4182
4182
limit = limit ,
4183
4183
downcast = downcast ,
4184
- ** kwargs ,
4184
+ ** kwargs
4185
4185
)
4186
4186
4187
4187
@Appender (_shared_docs ["replace" ] % _shared_doc_kwargs )
You can’t perform that action at this time.
0 commit comments