Merge pull request #3 from appsoluut/deepsource-transform-e4ee430f

style: format code with Ktlint
This commit is contained in:
Paul Hameteman 2025-10-14 22:16:20 +02:00 committed by GitHub
commit 9243088b88
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'),
EAST('E'),
SOUTH('S'),
WEST('W');
WEST('W'),
;
override fun toString(): String = symbol.toString()