Compare commits

..

No commits in common. "e653baf6d5ef59edf466222106e42c57ede91600" and "7ade7f9b84696785c5e416bb32a1c39e3e159d1e" have entirely different histories.

View File

@ -1195,7 +1195,7 @@ class Config:
value: Any) -> bool:
if not path in self.form or not 'pattern' in self.form[path]:
return True
if value is None or value == '':
if value is None or value is '':
match = True
else:
if isinstance(value, int):