mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
from typing import Optional
|
||||
|
||||
class JSONDecodeError(ValueError):
|
||||
msg: str = ...
|
||||
doc: str = ...
|
||||
pos: int = ...
|
||||
end: Optional[int] = ...
|
||||
end: int | None = ...
|
||||
lineno: int = ...
|
||||
colno: int = ...
|
||||
endlineno: Optional[int] = ...
|
||||
endcolno: Optional[int] = ...
|
||||
endlineno: int | None = ...
|
||||
endcolno: int | None = ...
|
||||
|
||||
Reference in New Issue
Block a user