Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
ArwaAbdelkhalik committed Jan 12, 2025
1 parent 6dfdc33 commit cc2425e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions solutions/capitalize_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
"""

import unittest


def capitalize_string(s):
"""
Expand All @@ -29,7 +27,3 @@ def capitalize_string(s):
if not isinstance(s, str):
raise TypeError("Input must be a string.")
return s.upper()


if __name__ == "__main__":
unittest.main()

0 comments on commit cc2425e

Please sign in to comment.