Skip to content

Commit 1bf0857

Browse files
committed
Fix format
1 parent d22a1f9 commit 1bf0857

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveServerMessage.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,10 @@ internal object LiveServerMessageSerializer :
181181
"toolCall" in jsonObject -> LiveServerToolCall.InternalWrapper.serializer()
182182
"toolCallCancellation" in jsonObject ->
183183
LiveServerToolCallCancellation.InternalWrapper.serializer()
184-
else -> throw SerializationException("Unknown LiveServerMessage response type. Keys found: ${jsonObject.keys}")
184+
else ->
185+
throw SerializationException(
186+
"Unknown LiveServerMessage response type. Keys found: ${jsonObject.keys}"
187+
)
185188
}
186189
}
187190
}

0 commit comments

Comments
 (0)