8000 Enable pyright for all Python 3 stubs by srittau · Pull Request #5597 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Enable pyright for all Python 3 stubs #5597

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jun 9, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use List in py2/py3 stub
  • Loading branch information
srittau committed Jun 9, 2021
commit ba145d9fa6f26f840fc92281b48bc0b9db213cb1
4 changes: 2 additions & 2 deletions stubs/Markdown/markdown/blockparser.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Any
from typing import Any, List

class State(list[Any]):
class State(List[Any]):
def set(self, state) -> None: ...
def reset(self) -> None: ...
def isstate(self, state): ...
Expand Down
0