style: linting
This commit is contained in:
parent
74e3278012
commit
42f06ebefa
11 changed files with 61 additions and 59 deletions
|
|
@ -28,7 +28,7 @@ data class FutureTime(
|
|||
fun FutureTime.asInt() =
|
||||
trueHour * 3600 + minute * 60 + second
|
||||
|
||||
fun fromInt(int: Int) = FutureTime.from(
|
||||
fun fromInt(int: Int) = from(
|
||||
int / 3600,
|
||||
(int / 60) % 60,
|
||||
int % 60,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue