Open
Description
We've recently added QGF
and QGFPoly
classes to the quantum data types. As a result, we want to pass instances of custom types (eg: galois.Poly
) as parameters to bloq.call_classically()
method. On doing this, mypy complains with a arg-type
error since definition of ClassicalValT
is restrictive.
For now, I'm adding # type: ignore[arg-type]
to unblock development, but someone should go and fix this. For example, see tests in #1622