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
Current messages are not enough specific and don't actually help end user to figure out the problem.
For example if we use constant type:
>>> from lollipop import types
>>> x = types.Constant(2)
>>> x.validate(1)
'Value is incorrect'
# Instead of something more reasonable
"Value 1 is incorrect, field is constant and can be only equal to 2"
The text was updated successfully, but these errors were encountered:
Current messages are not enough specific and don't actually help end user to figure out the problem.
For example if we use constant type:
The text was updated successfully, but these errors were encountered: