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
When using a default value such as: t.Key("integration", default=None, trafaret=t.Regexp(r"\w+"))
This will result in an error, as it checks the default argument against the trafaret object.
It seems sensible to skip any checking of the default argument for efficiency and to allow code as shown above.
The text was updated successfully, but these errors were encountered:
When using a default value such as:
t.Key("integration", default=None, trafaret=t.Regexp(r"\w+"))
This will result in an error, as it checks the default argument against the trafaret object.
It seems sensible to skip any checking of the default argument for efficiency and to allow code as shown above.
The text was updated successfully, but these errors were encountered: