From 9cb098df0ad5978b0e9aac78b4c68c9d16759f0f Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Mon, 7 Sep 2020 23:36:44 +0200 Subject: Format with trailing comma --- sw-bot/src/main/kotlin/org/luxons/sevenwonders/bot/SevenWondersBot.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw-bot') diff --git a/sw-bot/src/main/kotlin/org/luxons/sevenwonders/bot/SevenWondersBot.kt b/sw-bot/src/main/kotlin/org/luxons/sevenwonders/bot/SevenWondersBot.kt index c03ee201..8ceae2c2 100644 --- a/sw-bot/src/main/kotlin/org/luxons/sevenwonders/bot/SevenWondersBot.kt +++ b/sw-bot/src/main/kotlin/org/luxons/sevenwonders/bot/SevenWondersBot.kt @@ -24,13 +24,13 @@ import kotlin.time.hours data class BotConfig( val minActionDelayMillis: Long = 500, val maxActionDelayMillis: Long = 1000, - val globalTimeout: Duration = 10.hours + val globalTimeout: Duration = 10.hours, ) @OptIn(ExperimentalTime::class, ExperimentalCoroutinesApi::class) class SevenWondersBot( private val displayName: String, - private val botConfig: BotConfig = BotConfig() + private val botConfig: BotConfig = BotConfig(), ) { private val client = SevenWondersClient() -- cgit