Skip to content

Commit 2e1b0fc

Browse files
committed
WSRequestHelper - toStringParams fix
1 parent 37d8bac commit 2e1b0fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openai-client/src/main/scala/io/cequence/openaiscala/service/ws/WSRequestHelper.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ trait WSRequestHelper extends WSHelper {
426426
protected def toStringParams(
427427
params: Seq[(PT, Option[Any])]
428428
): Seq[(String, Option[Any])] =
429-
params.map { case (a, b) => (a.toString, Some(b)) }
429+
params.map { case (a, b) => (a.toString, b) }
430430

431431
// close
432432

0 commit comments

Comments
 (0)