From 1c5c7533a6eb7c6071ef608b3a2c7a95e9caa7bc Mon Sep 17 00:00:00 2001 From: Lukas Juhrich Date: Tue, 5 Sep 2023 02:34:51 +0200 Subject: [PATCH] [typing] enable stricter rules for `web` package --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c43ef10f6..3fb1a71a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ files = [ "pycroft/lib", "pycroft/external_services", "ldap_sync", - "web/blueprints", + "web", ] mypy_path = "stubs" namespace_packages = true @@ -49,9 +49,8 @@ module = [ "pycroft.helpers.task", "pycroft.helpers.user", "pycroft.helpers.utc", - "web.blueprints", - "web.blueprints.*", - "web.table.table", + "web", + "web.*", ] disallow_untyped_defs = true disallow_untyped_calls = true