Skip to content
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

Improve punctuation/grammar with pip-compile header #1547

Merged
merged 7 commits into from Nov 20, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions piptools/writer.py
Expand Up @@ -116,10 +116,10 @@ def write_header(self) -> Iterator[str]:
if self.emit_header:
yield comment("#")
yield comment(
"# This file is autogenerated by pip-compile with python "
f"{sys.version_info.major}.{sys.version_info.minor}"
"# This file is autogenerated by pip-compile with Python "
f"{sys.version_info.major}.{sys.version_info.minor}."
)
yield comment("# To update, run:")
yield comment("# To update it, run:")
ssbarnea marked this conversation as resolved.
Show resolved Hide resolved
yield comment("#")
compile_command = os.environ.get(
"CUSTOM_COMPILE_COMMAND"
Expand Down