mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-20 16:48:27 +08:00
Remove unnecessary ellipsis expressions (#9976)
Ignore flake8 F821 warnings in stub files
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
class JSONDecodeError(ValueError):
|
||||
msg: str = ...
|
||||
doc: str = ...
|
||||
pos: int = ...
|
||||
end: int | None = ...
|
||||
lineno: int = ...
|
||||
colno: int = ...
|
||||
endlineno: int | None = ...
|
||||
endcolno: int | None = ...
|
||||
msg: str
|
||||
doc: str
|
||||
pos: int
|
||||
end: int | None
|
||||
lineno: int
|
||||
colno: int
|
||||
endlineno: int | None
|
||||
endcolno: int | None
|
||||
|
||||
Reference in New Issue
Block a user