Skip to content

Commit db56064

Browse files
chezouCopilot
andauthored
Remove redundant kw argument
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 84fd4f2 commit db56064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tdclient/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def csv_text_record_reader(
231231
"""
232232
reader = csv.reader(io.TextIOWrapper(file_like, encoding), dialect=dialect)
233233
for row in reader:
234-
yield dict(zip(columns, row, strict=False))
234+
yield dict(zip(columns, row))
235235

236236

237237
def read_csv_records(

0 commit comments

Comments
 (0)