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:
Akuli
2021-08-08 23:25:18 +03:00
committed by GitHub
parent 64903b85d7
commit 191aac3b0e
6 changed files with 36 additions and 35 deletions
+3 -4
View File
@@ -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