Skip to content

Commit 268adf4

Browse files
github-actionsgithub-actions
github-actions
authored and
github-actions
committed
fixup! Format Python code with psf/black push
1 parent 20bba60 commit 268adf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strings/reverse_words.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def reverse_words(input_str: str) -> str:
1414
input_str = input_str.split(" ")
1515
new_str = list()
1616

17-
return ' '.join(reversed(input_str))
17+
return " ".join(reversed(input_str))
1818

1919

2020
if __name__ == "__main__":

0 commit comments

Comments
 (0)