Return True if the form has no errors, or False otherwise.
(self)
| 202 | return self._errors |
| 203 | |
| 204 | def is_valid(self): |
| 205 | """Return True if the form has no errors, or False otherwise.""" |
| 206 | return self.is_bound and not self.errors |
| 207 | |
| 208 | def add_prefix(self, field_name): |
| 209 | """ |
no outgoing calls
no test coverage detected