We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
overrides
1 parent 3536cd3 commit 6f6cd8cCopy full SHA for 6f6cd8c
pyproject.toml
@@ -155,9 +155,11 @@ disable_error_code = [
155
# `assert-type` issues is tests mostly comme from checking overloads
156
# Since this project is specific to Pylance, just ignore them
157
"assert-type",
158
+ # Incompatible overrides are out of our stubs' control
159
+ # as they are inherited from the implementation.
160
+ "override",
161
# TODO
162
"valid-type", # 967 errors in 115 files
- "override", # 790 errors in 220 files
163
"assignment", # 773 errors in 172 files
164
"misc", # 692 errors in 132 files
165
"attr-defined", # 202 errors in 75 files
0 commit comments