Adds new line at the end of PollState

This commit is contained in:
ericdecanini 2022-03-13 20:22:03 +01:00
parent f24d8c2ada
commit 86765c9020

View file

@ -24,4 +24,4 @@ sealed class PollState {
object Ended : PollState()
fun isVotable() = this !is Sending && this !is Ended
}
}