mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-25 17:58:40 +08:00
lowercase list and dict for 3rd party stubs (#5893)
* stubs/decorator/decorator.pyi * stubs/frozendict/frozendict.pyi * stubs/Jinja2/jinja2/nodes.pyi * stubs/Pygments/pygments/token.pyi * stubs/requests/requests/models.pyi * stubs/Werkzeug/werkzeug/http.pyi
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import typing
|
||||
from typing import Any
|
||||
|
||||
class Impossible(Exception): ...
|
||||
@@ -56,9 +55,9 @@ class If(Stmt):
|
||||
class Macro(Stmt):
|
||||
fields: Any
|
||||
name: str
|
||||
args: typing.List[Any]
|
||||
defaults: typing.List[Any]
|
||||
body: typing.List[Any]
|
||||
args: list[Any]
|
||||
defaults: list[Any]
|
||||
body: list[Any]
|
||||
|
||||
class CallBlock(Stmt):
|
||||
fields: Any
|
||||
|
||||
Reference in New Issue
Block a user