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
When I used real backend, pulse draw cause this error
from qiskit import QuantumCircuit from qiskit import pulse from qiskit import schedule circ = QuantumCircuit(2, 2) circ.ecr(1, 0) from qiskit import transpile circ = transpile(circ,backend,optimization_level=0) pulse_schedule = schedule(circ,backend=backend) pulse_schedule.draw(backend=backend)
TypeError: 'str' object is not callable
When I changed the code like this, bug is fixed.
The text was updated successfully, but these errors were encountered:
I can reproduce the error.
Sorry, something went wrong.
It is fixed by #12608. Verified this issue is fixed by installing from the main branch.
No branches or pull requests
Environment
What is happening?
When I used real backend, pulse draw cause this error
How can we reproduce the issue?
What should happen?
TypeError: 'str' object is not callable
Any suggestions?
When I changed the code like this, bug is fixed.
The text was updated successfully, but these errors were encountered: