forked from python-trio/flake8-async
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
… and --trio200-blocking-calls now handle spaces and newlines
- Loading branch information
Showing
4 changed files
with
94 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
""" | ||
This type stub file was generated by pyright. | ||
""" | ||
|
||
from collections.abc import Sequence | ||
|
||
"""Command-line implementation of flake8.""" | ||
|
||
def main(argv: Sequence[str] | None = ...) -> int: | ||
"""Execute the main bit of the application. | ||
This handles the creation of an instance of :class:`Application`, runs it, | ||
and then exits the application. | ||
:param argv: | ||
The arguments to be passed to the application for parsing. | ||
""" | ||
... |