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 2120a18 commit 5167da5Copy full SHA for 5167da5
airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py
@@ -197,7 +197,7 @@ def _read_csv(
197
"encoding": file_encoding,
198
}
199
200
- for chunk in pd.read_csv(path, **csv_read_params):
+ for chunk in pd.read_csv(path, **csv_read_params): # type: ignore # ignoring how args are passed
201
# replace NaN with None
202
chunk = chunk.replace({nan: None}).to_dict(orient="records")
203
for record in chunk:
@@ -227,7 +227,7 @@ def _read_json_lines(
227
"convert_dates": False,
228
229
230
- for chunk in pd.read_json(path, **json_read_params):
+ for chunk in pd.read_json(path, **json_read_params): # type: ignore # ignoring how args are passed
231
for record in chunk.to_dict(orient="records"):
232
yield record
233
0 commit comments