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
Right now we can pass any string we want. Process().as_dict(['foo', 'bar', '???']) will just return an empty dict. That's error prone as it hides user typos. Instead we should raise a ValueError.
The text was updated successfully, but these errors were encountered:
Right now we can pass any string we want.
Process().as_dict(['foo', 'bar', '???'])
will just return an empty dict. That's error prone as it hides user typos. Instead we should raise aValueError
.The text was updated successfully, but these errors were encountered: