Skip to content

Commit db94a49

Browse files
committed
pymyp
1 parent 026d928 commit db94a49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

onnx_diagnostic/helpers/doc_helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def __init__(
2525
self.axis = self.get_attribute_int(node, "axis", -1)
2626
self.epsilon = self.get_attribute_float(node, "epsilon", 1e-5)
2727
self.device = device
28-
self.stash_type = onnx_dtype_to_torch_dtype( # type: ignore[arg-type]
29-
self.get_attribute_int(node, "stash_type", onnx.TensorProto.FLOAT)
28+
self.stash_type = onnx_dtype_to_torch_dtype(
29+
self.get_attribute_int(node, "stash_type", onnx.TensorProto.FLOAT) # type: ignore[arg-type]
3030
)
3131
self.compute_std = len(node.output) > 1
3232
assert not self.compute_std, (

0 commit comments

Comments
 (0)