We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf4f57 commit 3dd74c9Copy full SHA for 3dd74c9
scrapy_playwright/handler.py
@@ -74,7 +74,7 @@ class Config:
74
max_contexts: Optional[int]
75
startup_context_kwargs: dict
76
navigation_timeout: Optional[float]
77
- close_context_interval : Optional[float]
+ close_context_interval: Optional[float]
78
79
@classmethod
80
def from_settings(cls, settings: Settings) -> "Config":
@@ -91,7 +91,7 @@ def from_settings(cls, settings: Settings) -> "Config":
91
),
92
close_context_interval=_get_float_setting(
93
settings, "PLAYWRIGHT_CLOSE_CONTEXT_INTERVAL"
94
- )
+ ),
95
)
96
cfg.cdp_kwargs.pop("endpoint_url", None)
97
if not cfg.max_pages_per_context:
0 commit comments