We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a6c8f commit 49f884aCopy full SHA for 49f884a
labelbox/data/mixins.py
@@ -13,7 +13,7 @@ def confidence_valid_float(cls, value):
13
if value is None:
14
return value
15
if not isinstance(value, (int, float)) or not 0 <= value <= 1:
16
- raise ValueError('must be float within [0,1] range')
+ raise ValueError('must be a number within [0,1] range')
17
18
19
def dict(self, *args, **kwargs):
0 commit comments