style: linting

This commit is contained in:
Cilly Leang 2025-11-22 16:40:02 +11:00
parent 74e3278012
commit 42f06ebefa
Signed by: cilly
GPG key ID: 6500251E087653C9
11 changed files with 61 additions and 59 deletions

View file

@ -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,