Skip to content
New issue

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

Improve docstring for Statevector.evolve #9666

Merged
merged 5 commits into from
Mar 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qiskit/quantum_info/states/statevector.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def evolve(self, other, qargs=None):
"""Evolve a quantum state by the operator.

Args:
other (Operator): The operator to evolve by.
other (Operator | QuantumCircuit | Instruction): The operator to evolve by.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, Sphinx is actually complaining about the lookup of Instruction is ambiguous. I think if you make it circuit.Instruction it should be happy again.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, that worked. 🙂

qargs (list): a list of Statevector subsystem positions to apply
the operator on.

Expand Down