fix(chalice): fixed wrong schema transformer (#1780)

This commit is contained in:
Kraiem Taha Yassine 2023-12-15 13:37:13 +01:00 committed by GitHub
parent 48954352fe
commit ece2631c60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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: