Add todo-note for non-strict `msgspec` decode-mode?

pld_dec_refinements
Tyler Goodlet 2025-09-29 11:41:46 -04:00
parent 2be3f93a8f
commit 15f58495d5
1 changed files with 4 additions and 1 deletions

View File

@ -259,8 +259,11 @@ def mk_dec(
return MsgDec(
_dec=msgpack.Decoder(
type=spec, # like `MsgType[Any]`
type=spec,
dec_hook=dec_hook,
# ?TODO, support it?
# https://jcristharif.com/msgspec/usage.html#strict-vs-lax-mode
# strict=False,
),
)