Skip to content

Commit aa2a9f9

Browse files
committed
style: align with flake8 newest version
1 parent fb73367 commit aa2a9f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commitizen/commands/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ def __call__(self):
1616
if version:
1717
out.write(f"{version}")
1818
else:
19-
out.error(f"No project information in this project.")
19+
out.error("No project information in this project.")
2020
elif self.parameter.get("verbose"):
2121
out.write(f"Installed Commitizen Version: {__version__}")
2222
version = self.config.settings["version"]
2323
if version:
2424
out.write(f"Project Version: {version}")
2525
else:
26-
out.error(f"No project information in this project.")
26+
out.error("No project information in this project.")
2727
else:
2828
# if no argument is given, show installed commitizen version
2929
out.write(f"{__version__}")

0 commit comments

Comments
 (0)