10000 Run build a second time when using --install-types --non-interactive by JukkaL · Pull Request #10669 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Run build a second time when using --install-types --non-interactive #10669

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 8 commits into from
Jun 18, 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
Update message
  • Loading branch information
JukkaL committed Jun 18, 2021
commit faaab78d15f2f93473912209fdd89a7519b7abb9
2 changes: 1 addition & 1 deletion mypy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def main(script_path: Optional[str],
install_types(options.cache_dir, formatter, after_run=True,
non_interactive=options.non_interactive)
print()
print("Hint: Run mypy again to get up-to-date results with installed types")
print("Hint: Run mypy again for up-to-date results with installed types")
return

if options.fast_exit:
Expand Down
0