style: format code with Ktlint

This commit fixes the style issues introduced in 61e293e according to the output
from Ktlint.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2025-10-14 20:14:12 +00:00 committed by GitHub
commit 6fe6fdee8c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,7 +4,8 @@ enum class Heading(val symbol: Char) {
NORTH('N'), NORTH('N'),
EAST('E'), EAST('E'),
SOUTH('S'), SOUTH('S'),
WEST('W'); WEST('W'),
;
override fun toString(): String = symbol.toString() override fun toString(): String = symbol.toString()