From dd2c6cecb9a101312739f2c50e631f5e5b265f1a Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Wed, 30 Aug 2023 12:53:34 -0500 Subject: [PATCH] Enable warning about deprecated imports from typing --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 0208c6ec..325b0114 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -126,6 +126,7 @@ reportUnusedImport = "none" reportUnusedVariable = "none" reportImportCycles = "none" reportImplicitOverride = "error" +deprecateTypingAliases = true [tool.pytest.ini_options] minversion = "6.0"