With the following configuration file mypy won’t ignore override
errors but import-type
ones only
[mypy]
disable_error_code = import-untype,override
What’s the correct way to specify multiple values for the disable_error_code
setting?
With the following configuration file mypy won’t ignore override
errors but import-type
ones only
[mypy]
disable_error_code = import-untype,override
What’s the correct way to specify multiple values for the disable_error_code
setting?