fix(chalice): fixed wrong schema transformer
This commit is contained in:
parent
0820689c9c
commit
ce424d0959
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue