From 77cb7a8f64f25191d84528cc61e1d246296645c9 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Tue, 16 Nov 2021 14:32:51 -0800 Subject: [PATCH] chore: check setup.py with mypy Prior commit 06184daafd5010ba40bb39a0768540b7e98bd171 fixed the type-hints for setup.py. But missed removing 'setup' from the exclude list in pyproject.toml for mypy checks. Remove 'setup' from the exclude list in pyproject.toml from mypy checks. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f48ed5f65..31eeceab0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,6 @@ module = [ "gitlab.v4.objects.repositories", "gitlab.v4.objects.services", "gitlab.v4.objects.sidekiq", - "setup", "tests.functional.*", "tests.functional.api.*", "tests.meta.*",