Skip to content

Commit

Permalink
Review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
evangriffiths committed Feb 1, 2024
1 parent a5d4d40 commit cf34da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evo_researcher/benchmark/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def get_polymarket_markets(
if number > 100:
raise ValueError("Polymarket API only returns 100 markets at a time")

api_uri = f"https://strapi-matic.poly.market/markets?_limit={number}&active=true&closed=false"
api_uri = f"https://strapi-matic.poly.market/markets?_limit={number + len(excluded_questions)}&active=true&closed=false"
ms_json = requests.get(api_uri).json()
markets: t.List[Market] = []
for m_json in ms_json:
Expand Down

0 comments on commit cf34da2

Please sign in to comment.