From 856f5d0c79a3ec5799032f63c045a91f2c0e7912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Thu, 9 Nov 2023 14:10:58 +0100 Subject: [PATCH] update flake8 and pyright configs --- .flake8 | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index bde6652..9c09104 100644 --- a/.flake8 +++ b/.flake8 @@ -4,5 +4,5 @@ include = src max-line-length = 88 max-doc-length = 88 max-complexity = 7 -max-expression-complexity = 5.5 -use_class_attributes_order_strict_mode=True \ No newline at end of file +max-expression-complexity = 7 +use_class_attributes_order_strict_mode=True diff --git a/pyproject.toml b/pyproject.toml index 5101ca9..f5aca10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,7 @@ venvPath = "." venv = ".venv" typeCheckingMode = "basic" reportUnknownMemberType = true +reportUnknownParameterType = true [tool.black] line-length = 88