Files
slic/functions/string_utils.py
yasmine_tligui 47508f32fc
Run Pytest with Allure and Coverage Reports / tests (push) Successful in 37s
Functions files
2025-07-14 11:47:35 +02:00

8 lines
141 B
Python

def uppercase(s):
if s is None:
raise TypeError("Input cannot be None")
return s.upper()
def reverse(s):
return s[::-1]