Skip to content

Commit ad63922

Browse files
committed
Fix codestyle
1 parent f653fc3 commit ad63922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shc/interfaces/mysql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def _get_to_mysql_converter(type_: Type[T]) -> Callable[[T], Any]:
317317
elif issubclass(type_, int):
318318
# we know that type_ is equivalent to T -> int(a: int) is valid
319319
return cast(Callable[[T], Any],
320-
lambda value: int(value))
320+
lambda value: int(value))
321321
elif issubclass(type_, float):
322322
# we know that type_ is equivalent to T -> float(a: float) is valid
323323
return cast(Callable[[T], Any],

0 commit comments

Comments
 (0)