style: format code with Ktlint

This commit fixes the style issues introduced in 2c372a8 according to the output
from Ktlint.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2025-10-14 21:22:45 +00:00 committed by GitHub
commit 7c471e4461
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,8 +9,8 @@ class Rover {
positionX = command[ROVER_STARTING_POSITION_X].toInt(), positionX = command[ROVER_STARTING_POSITION_X].toInt(),
positionY = command[ROVER_STARTING_POSITION_Y].toInt(), positionY = command[ROVER_STARTING_POSITION_Y].toInt(),
heading = heading =
Heading.from(command[ROVER_FACING_DIRECTION][ROVER_COMMANDLIST_DIRECTION]) Heading.from(command[ROVER_FACING_DIRECTION][ROVER_COMMANDLIST_DIRECTION])
?: state.heading, ?: state.heading,
) )
} }
} }