From 0e2cb7cdf6d3616a5ad256b1d243bbe50b7938aa Mon Sep 17 00:00:00 2001 From: Corey Goldberg <1113081+cgoldberg@users.noreply.github.com> Date: Sat, 3 May 2025 00:16:05 -0400 Subject: [PATCH] [py] exclude devtools directory from type checking --- py/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/py/pyproject.toml b/py/pyproject.toml index 5803c4de29092..9cd023267d979 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -91,6 +91,7 @@ testpaths = ["test"] # mypy global options [tool.mypy] +exclude = "selenium/webdriver/common/devtools" # The aim in future here is we would be able to turn (most) of these flags on, however the typing technical # debt is quite colossal right now. For now we should maybe get everything working with the config here # then look at going after partially or completely untyped defs as a phase-2.