Skip to content

Commit 0a7d215

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 04e84b9 commit 0a7d215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strings/swapcase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111

12-
def swap_case(input_string : str) -> str:
12+
def swap_case(input_string: str) -> str:
1313
"""This method will swap the cases of a given string
1414
eg: input: input_string= "Hello" output: swapped_string="hELLO" """
1515
list_representation = list(input_string)

0 commit comments

Comments
 (0)