diff options
author | John L. Villalovos <john@sodarock.com> | 2021-11-16 14:32:51 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-11-16 14:34:19 -0800 |
commit | 77cb7a8f64f25191d84528cc61e1d246296645c9 (patch) | |
tree | 28268e5b87f6774c936b571d91f0636c25590859 | |
parent | 0951989cc4eaabc2e2bd82adeb38936d145ddec2 (diff) | |
download | gitlab-77cb7a8f64f25191d84528cc61e1d246296645c9.tar.gz |
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.
-rw-r--r-- | pyproject.toml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index f48ed5f..31eecea 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.*", |