We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f653fc3 commit ad63922Copy full SHA for ad63922
shc/interfaces/mysql.py
@@ -317,7 +317,7 @@ def _get_to_mysql_converter(type_: Type[T]) -> Callable[[T], Any]:
317
elif issubclass(type_, int):
318
# we know that type_ is equivalent to T -> int(a: int) is valid
319
return cast(Callable[[T], Any],
320
- lambda value: int(value))
+ lambda value: int(value))
321
elif issubclass(type_, float):
322
# we know that type_ is equivalent to T -> float(a: float) is valid
323
0 commit comments