Skip to content

Commit 0022f18

Browse files
committed
Change **kwds to **kwargs
1 parent c5946ca commit 0022f18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

circuitpython_csv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def __init__(
219219
fieldnames: List,
220220
restval: str = "",
221221
extrasaction: str = "raise",
222-
**kwds
222+
**kwargs
223223
):
224224
self.fieldnames = fieldnames # list of keys for the dict
225225
self.restval = restval # for writing short dicts
@@ -228,7 +228,7 @@ def __init__(
228228
"extrasaction " "(%s)" " must be 'raise' or 'ignore'" % extrasaction
229229
)
230230
self.extrasaction = extrasaction
231-
self.writer = writer(f, **kwds)
231+
self.writer = writer(f, **kwargs)
232232

233233
def writeheader(self):
234234
"""Writes the header row to the CSV file"""

0 commit comments

Comments
 (0)