From 67523b49db2eb7b4ccd920286d139815797e2a59 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Tue, 13 Feb 2024 22:10:02 +0000 Subject: [PATCH] Fix linting: disable mypy --install-types `pip install .[all]` already installs the third-party hints, and `--install-types` prompts for confirmation, breaking the CI. --- setup.cfg | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index bec6295d..fb2e88dd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -80,7 +80,6 @@ ignore-words-list = alers [mypy] exclude = ^\.git/|^__pycache__/|^docs/source/conf.py$|^old/|^build/|^dist/|\.tox python_version = 3.9 -install_types = True pretty = True scripts_are_modules = True show_error_codes = True