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 a4198b4 commit e8f1721Copy full SHA for e8f1721
1 file changed
Deeploy/OperatorDescriptor.py
@@ -55,7 +55,7 @@ def FloatTupleUnpack(value: Any) -> Tuple[float, ...]:
55
def IntTupleIfNotSingleItemUnpack(value: Any) -> Union[int, Tuple[int, ...]]:
56
try:
57
return IntUnpack(value)
58
- except:
+ except ValueError:
59
return IntTupleUnpack(value)
60
61
0 commit comments