change prints in scripts/create_baseline_stubs.py (#6051)

This commit is contained in:
Akuli
2021-09-19 22:38:23 +03:00
committed by GitHub
parent caa642dd3b
commit afad78343a

View File

@@ -161,12 +161,11 @@ def main() -> None:
print("\nDone!\n\nSuggested next steps:")
print(f" 1. Manually review the generated stubs in {stub_dir}")
print(" 2. Run stubtest to test the generated stubs against runtime definitions")
print(f' 3. Run "flake8 {stub_dir}" to check code style')
print(f' 4. Run "mypy {stub_dir}" to check for errors')
print(f' 5. Run "black {stub_dir}" (if you\'ve made code changes)')
print(" 6. Create branch in the typeshed repo and commit the stubs (and other changes)")
print(" 7. Create typeshed PR")
print(f' 2. Run "MYPYPATH={stub_dir} python3 -m mypy.stubtest {package}" to check the stubs against runtime')
print(f' 3. Run "mypy {stub_dir}" to check for errors')
print(f' 4. Run "black {stub_dir}" and "isort {stub_dir}" (if you\'ve made code changes)')
print(f' 5. Run "flake8 {stub_dir}" to check for e.g. unused imports')
print(" 6. Commit the changes on a new branch and create a typeshed PR")
if __name__ == "__main__":