Skip to content

Commit e7c7d55

Browse files
committed
Increased page size to download everything at once
1 parent 5e36865 commit e7c7d55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode_anki/helpers/leetcode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def _get_problems_data(
214214
start = self._start
215215
stop = min(self._stop, problem_count)
216216

217-
page_size = min(50, stop - start + 1)
217+
page_size = min(3000, stop - start + 1)
218218

219219
problems: List[
220220
leetcode.models.graphql_question_detail.GraphqlQuestionDetail

0 commit comments

Comments
 (0)