Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
[FIX]: Timeout should now properly work.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Yip committed Sep 23, 2021
1 parent 77b3567 commit 55d629b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.6
2.1.7
2 changes: 1 addition & 1 deletion musescore_scraper/MuseScraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def _pyppeteer_main(

page: pyppeteer.page.Page = await self._browser.newPage()
await page.setViewport({ "width" : 1000, "height" : 1000 } )
await page.goto(url)
await page.goto(url, timeout=self.timeout)

score_name: str = (
await (await (
Expand Down

0 comments on commit 55d629b

Please sign in to comment.