From 520789b4cba928fa4e0fb5a1e45ad323e39f4830 Mon Sep 17 00:00:00 2001 From: Stefan Hansson <newbyte@postmarketos.org> Date: Sat, 2 Nov 2024 12:26:47 +0100 Subject: [PATCH] pyproject.toml: Set disallow_incomplete_defs = true With the parent of this commit, we pass this check. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 87955f5..e416476 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,5 +46,6 @@ line-length=100 [tool.mypy] check_untyped_defs = true +disallow_incomplete_defs = true disallow_untyped_calls = true disallow_untyped_decorators = true -- GitLab