fix(chalice): fixed wrong schema transformer

This commit is contained in:
Taha Yassine Kraiem 2023-12-15 13:34:26 +01:00
parent 0820689c9c
commit ce424d0959

View file

@ -10,7 +10,7 @@ def transform_email(email: str) -> str:
def int_to_string(value: int) -> str:
return str(value) if isinstance(value, int) else int
return str(value) if isinstance(value, int) else value
def remove_whitespace(value: str) -> str: