common/tools: validate for string emptiness in cointool

pull/1068/head
Pavol Rusnak 4 years ago committed by Tomas Susanka
parent f8b2f0bb7b
commit 46087c4a2b

@ -76,6 +76,8 @@ def check_type(val, types, nullable=False, empty=False, regex=None, choice=None)
# check empty
if isinstance(val, (list, dict)) and not empty and not val:
raise ValueError("Empty collection")
if isinstance(val, str) and not empty and not val:
raise ValueError("Empty string")
# check regex
if regex is not None:

Loading…
Cancel
Save