Skip to content
This repository has been archived by the owner on May 8, 2020. It is now read-only.

Commit

Permalink
Fix default arguments for launch()
Browse files Browse the repository at this point in the history
  • Loading branch information
miyakogi committed Sep 28, 2018
1 parent 3b00c4c commit 4486db7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyppeteer/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ def __init__(self, options: Dict[str, Any] = None, # noqa: C901
self.chromeClosed = True

ignoreDefaultArgs = options.get('ignoreDefaultArgs', False)
args: List[str] = list()

args: List[str] = options.get('args', list())
self.dumpio = options.get('dumpio', False)
executablePath = options.get('executablePath')
self.env = options.get('env')
Expand Down

0 comments on commit 4486db7

Please sign in to comment.