Skip to content

Commit 5167da5

Browse files
author
Oleksandr Bazarnov
committed
fix linter issues
1 parent 2120a18 commit 5167da5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def _read_csv(
197197
"encoding": file_encoding,
198198
}
199199

200-
for chunk in pd.read_csv(path, **csv_read_params):
200+
for chunk in pd.read_csv(path, **csv_read_params): # type: ignore # ignoring how args are passed
201201
# replace NaN with None
202202
chunk = chunk.replace({nan: None}).to_dict(orient="records")
203203
for record in chunk:
@@ -227,7 +227,7 @@ def _read_json_lines(
227227
"convert_dates": False,
228228
}
229229

230-
for chunk in pd.read_json(path, **json_read_params):
230+
for chunk in pd.read_json(path, **json_read_params): # type: ignore # ignoring how args are passed
231231
for record in chunk.to_dict(orient="records"):
232232
yield record
233233

0 commit comments

Comments
 (0)