Skip to content
Snippets Groups Projects

Loosen checks on numeric values

Merged Thibault Lavigne requested to merge loosen-checks-on-numeric-values into master
1 file
+ 3
4
Compare changes
  • Side-by-side
  • Inline
@@ -152,7 +152,7 @@ class MetaDataMixin(object):
metadata.get("name"), str
), "name shouldn't be null and should be of type str"
assert metadata.get("value") and isinstance(
assert metadata.get("value") is not None and isinstance(
metadata.get("value"), (str, float, int)
), "value shouldn't be null and should be of type (str or float or int)"
Loading