Take into account that City.validate() method may never be called for a city - in case a CriticalValidationError occured
This commit is contained in:
parent
58f59a8478
commit
0e60535121
1 changed files with 5 additions and 4 deletions
|
@ -1740,10 +1740,11 @@ class City:
|
|||
|
||||
@property
|
||||
def is_good(self):
|
||||
assert self.validate_called, (
|
||||
"You mustn't refer to City.is_good property before calling "
|
||||
"the City.validate() method."
|
||||
)
|
||||
if not (self.errors or self.validate_called):
|
||||
raise RuntimeError(
|
||||
"You mustn't refer to City.is_good property before calling "
|
||||
"the City.validate() method unless an error already occurred."
|
||||
)
|
||||
return len(self.errors) == 0
|
||||
|
||||
def get_validation_result(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue