8000 gh-104050: Argument Clinic: Annotate CLanguage.render_option_group_parsing() by erlend-aasland · Pull Request #106929 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-104050: Argument Clinic: Annotate CLanguage.render_option_group_parsing() #106929

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
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
🤦
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
erlend-aasland and AlexWaygood authored Jul 20, 2023
commit 5fe6c3ff7390ebc5e9d0f70bd9d5ffe05303406a
2 changes: 1 addition & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,7 @@ def render_option_group_parsing(
d['name'] = f.name
d['format_units'] = "".join(p.converter.format_unit for p in subset)

parse_arguments: list[Any] = []
parse_arguments: list[str] = []
for p in subset:
p.converter.parse_argument(parse_arguments)
d['parse_arguments'] = ", ".join(parse_arguments)
Expand Down
0