From 7c471e4461c19f48524c2981812366fbab5643f7 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:22:45 +0000 Subject: [PATCH] style: format code with Ktlint This commit fixes the style issues introduced in 2c372a8 according to the output from Ktlint. Details: None --- src/main/kotlin/org/example/Rover.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/example/Rover.kt b/src/main/kotlin/org/example/Rover.kt index 79ba25b..5c74bf6 100644 --- a/src/main/kotlin/org/example/Rover.kt +++ b/src/main/kotlin/org/example/Rover.kt @@ -9,8 +9,8 @@ class Rover { positionX = command[ROVER_STARTING_POSITION_X].toInt(), positionY = command[ROVER_STARTING_POSITION_Y].toInt(), heading = - Heading.from(command[ROVER_FACING_DIRECTION][ROVER_COMMANDLIST_DIRECTION]) - ?: state.heading, + Heading.from(command[ROVER_FACING_DIRECTION][ROVER_COMMANDLIST_DIRECTION]) + ?: state.heading, ) } }