Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! Format Python code with psf/black push
  • Loading branch information
github-actions github-actions
github-actions authored and github-actions committed Apr 7, 2020
commit 4592a9bdcb40ecd3d3959ca548fc516daffa327e
2 changes: 1 addition & 1 deletion strings/reverse_words.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def reverse_words(input_str: str) -> str:
input_str = input_str.split(" ")
new_str = list()

return ' '.join(reversed(input_str))
return " ".join(reversed(input_str))


if __name__ == "__main__":
Expand Down