From 1decf0dd5d0bf35a282cebf8412285d3d86f80ca Mon Sep 17 00:00:00 2001 From: ckunki Date: Thu, 18 Apr 2024 15:17:52 +0200 Subject: [PATCH] Excluded generated API from mypy type check --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 524f3dd..a298612 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,12 +83,14 @@ ignore-paths = [ [[tool.mypy.overrides]] module = [ "exasol.toolbox.nox.tasks", + "exasol.saas.client.openapi.*", "test.conftest.*", "test.*", ] ignore_errors = true ignore_missing_imports = true + [tool.pylint.format] max-line-length = 88 max-module-lines = 800