fix(chalice): fixed wrong schema transformer (#1780)
This commit is contained in:
parent
48954352fe
commit
ece2631c60
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