Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fefa43b

Browse files
committedOct 13, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d62e59d commit fefa43b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎strings/swapcase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"""
99

1010

11-
def swap_case(input_string: str)-> str:
12-
""" This Method will swap the case of a given string
11+
def swap_case(input_string: str) -> str:
12+
"""This Method will swap the case of a given string
1313
eg: input: input_string="book" output: swapped_string="BOOK"
1414
"""
1515
list_representation = list(input_string)

0 commit comments

Comments
 (0)
Please sign in to comment.