Skip to content

Commit d431e8b

Browse files
fix: remove slicing in _parse_json response
1 parent 01357bf commit d431e8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/download_and_parse_resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def _parse_json(
309309
try:
310310
data = json.loads(text)
311311
if isinstance(data, list):
312-
return data[:max_rows]
312+
return data
313313
if isinstance(data, dict):
314314
return [data]
315315
except json.JSONDecodeError:

0 commit comments

Comments
 (0)