1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Fix lint error

This commit is contained in:
Paul Moore 2020-01-15 09:40:16 +00:00
parent 53eba71ef4
commit 21e5c0eb11

View file

@ -99,7 +99,7 @@ def update_version_file(version: str, filepath: str) -> None:
f.write(line)
assert file_modified, \
"Version file {} did not get modified".format(filepath)
"Version file {} did not get modified".format(filepath)
def create_git_tag(session: Session, tag_name: str, *, message: str) -> None: