We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 067b361 commit e62f787Copy full SHA for e62f787
1 file changed
onnxscript/version_converter/__init__.py
@@ -22,4 +22,6 @@ def convert_version(model: ir.Model, target_version: int, fallback=False) -> Non
22
"""
23
# In functions, we can have attribute-parameters, which means we don't know the value of the attribute.
24
# Hence, we inline all the functions.
25
- _version_converter_pass.ConvertVersionPass(target_version=target_version, fallback=fallback)(model)
+ _version_converter_pass.ConvertVersionPass(
26
+ target_version=target_version, fallback=fallback
27
+ )(model)
0 commit comments