fix headless true by default

This commit is contained in:
2022-08-15 18:54:23 -05:00
parent 695ee084b5
commit b51e6e8917

View File

@@ -6,7 +6,7 @@ import typing
import playwright.sync_api
ScoreList = typing.List[typing.Dict[str, typing.Union[str, float]]]
HEADLESS = False if os.getenv("DEBUG") else False
HEADLESS = False if os.getenv("DEBUG") else True
class BaseLoader: