From 6bed7da165f3c361d938d52ba94b3e2e15894d76 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Fri, 15 Aug 2025 20:36:20 +0200 Subject: [PATCH] build(pyproject.toml): use basic type checking to kinda supress flask_login's nonexistent typing --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ea39e1e..cc3b557 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,9 @@ test = [ "pytest-mock>=3.14.1", ] +[tool.basedpyright] +typeCheckingMode = "basic" + [tool.ruff] line-length = 79 exclude = ["tests/*"]