We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5946ca commit 0022f18Copy full SHA for 0022f18
circuitpython_csv.py
@@ -219,7 +219,7 @@ def __init__(
219
fieldnames: List,
220
restval: str = "",
221
extrasaction: str = "raise",
222
- **kwds
+ **kwargs
223
):
224
self.fieldnames = fieldnames # list of keys for the dict
225
self.restval = restval # for writing short dicts
@@ -228,7 +228,7 @@ def __init__(
228
"extrasaction " "(%s)" " must be 'raise' or 'ignore'" % extrasaction
229
)
230
self.extrasaction = extrasaction
231
- self.writer = writer(f, **kwds)
+ self.writer = writer(f, **kwargs)
232
233
def writeheader(self):
234
"""Writes the header row to the CSV file"""
0 commit comments