**Context:** - Playwright Version: [what Playwright version do you use?] 1.24.0 - Operating System: [e.g. Windows, Linux or Mac] N/A - Python version: [e.g. 3.7, 3.9] 3.10 - Browser: [e.g. All, Chromium, Firefox, WebKit] N/A - Extra: [any specific details about your environment] N/A **Code Snippet** ```py browser.launch(proxy=None) # mypy error: expected "ProxySettings" found "None" ``` **Describe the bug** ```py proxy: ProxySettings = None, ``` This should be typed as: ```py proxy: Optional[ProxySettings] = None, ``` implicit optional is deprecated(dead in the water 💀🌊)