You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like JSON3.read(cmd::Cmd) just does JSON3.read(Base.read(cmd, String)), but an oversight is that JSON3.read(cmd::Cmd, sometype::Type) doesn't yield JSON3.read(Base.read(cmd, String), sometype). This is an oversight and a one line fix with a new dispatch, right?
It looks like
JSON3.read(cmd::Cmd)
just doesJSON3.read(Base.read(cmd, String))
, but an oversight is thatJSON3.read(cmd::Cmd, sometype::Type)
doesn't yieldJSON3.read(Base.read(cmd, String), sometype)
. This is an oversight and a one line fix with a new dispatch, right?Currently:
The text was updated successfully, but these errors were encountered: