mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-07 11:46:42 +03:00
30debb5110
The following was before: ```txt typing.Union[ typing.List[typing.Union[typing.Pattern[str], str]], typing.Pattern[str], str, ] ``` but it should be: ```txt typing.Union[ typing.List[typing.Pattern[str]], typing.List[str], typing.List[typing.Union[typing.Pattern[str], str]], typing.Pattern[str], str, ] ``` Otherwise mypy yells at us. See https://github.com/microsoft/playwright-python/issues/1524 |
||
---|---|---|
.. | ||
src |