Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Jan 22, 2024
1 parent ad2ffea commit 65b3ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyquil/quilbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def __new__(cls, qubit: Union[Qubit, QubitPlaceholder, FormalArgument]) -> Self:
return super().__new__(cls, qubit)

@classmethod
def _from_rs_reset(cls, reset: quil_rs.Reset) -> "Reset":
def _from_rs_reset(cls, reset: quil_rs.Reset) -> "ResetQubit":
return super().__new__(cls, reset.qubit)


Expand Down

0 comments on commit 65b3ed6

Please sign in to comment.