We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following #906, the Call op is now defined as
Call
hugr/hugr/src/ops/dataflow.rs
Lines 154 to 159 in d69198e
However, the corresponding pydantic model doesn't match up:
hugr/hugr-py/src/hugr/serialization/ops.py
Lines 246 to 264 in d69198e
Also, the assert isinstance(fun_ty, PolyFuncType) will always fail since fun_ty is a Type, which can never contain a PolyFuncType.
assert isinstance(fun_ty, PolyFuncType)
fun_ty
Type
PolyFuncType
The text was updated successfully, but these errors were encountered:
Fixed by #982
Sorry, something went wrong.
mark-koch
No branches or pull requests
Following #906, the
Call
op is now defined ashugr/hugr/src/ops/dataflow.rs
Lines 154 to 159 in d69198e
However, the corresponding pydantic model doesn't match up:
hugr/hugr-py/src/hugr/serialization/ops.py
Lines 246 to 264 in d69198e
Also, the
assert isinstance(fun_ty, PolyFuncType)
will always fail sincefun_ty
is aType
, which can never contain aPolyFuncType
.The text was updated successfully, but these errors were encountered: