Hi, With respect to [ validators.py > IS_IN_DB.__call__ > elif self.theset ], should this:
if *value *in self.theset:
be replaced with the following instead?:
if *str(value)* in self.theset:
This considering that theset is assigned in build_set as str values,
otherwise the value will never be found in the set according to the existing
condition.
Take care,
Carlos

