Skip to content
This repository has been archived by the owner on Dec 18, 2022. It is now read-only.

Commit

Permalink
fix: format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
Mousa Zeid Baker committed Oct 5, 2022
1 parent 212c6c9 commit f747790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetryup/core/pyproject.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def __get_poetry_version() -> str:

output = cmd_run(["poetry", "--version"], capture_output=True)
# output is: 'Poetry version x.y.z'
return output.rsplit(" ", 1).pop().strip().replace(")","")
return output.rsplit(" ", 1).pop().strip().replace(")", "")

@staticmethod
def __run_poetry_show() -> str:
Expand Down

0 comments on commit f747790

Please sign in to comment.