Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Coull committed Sep 6, 2024
1 parent 1c04013 commit 8ecf2d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/braket/aws/aws_quantum_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def _(
aws_session: AwsSession,
create_task_kwargs: dict[str, Any],
device_arn: str,
device_parameters: dict | BraketSchemaBase,
device_parameters: Union[dict, BraketSchemaBase], # noqa: UP007
_disable_qubit_rewiring: bool,
inputs: dict[str, float],
gate_definitions: dict[tuple[Gate, QubitSet], PulseSequence],
Expand Down Expand Up @@ -619,7 +619,7 @@ def _(
aws_session: AwsSession,
create_task_kwargs: dict[str, Any],
device_arn: str,
device_parameters: dict | BraketSchemaBase,
device_parameters: Union[dict, BraketSchemaBase], # noqa: UP007
_disable_qubit_rewiring: bool,
inputs: dict[str, float],
gate_definitions: Optional[dict[tuple[Gate, QubitSet], PulseSequence]], # noqa: UP007
Expand Down Expand Up @@ -647,7 +647,7 @@ def _(
aws_session: AwsSession,
create_task_kwargs: dict[str, any],
device_arn: str,
_device_parameters: dict | BraketSchemaBase,
_device_parameters: Union[dict, BraketSchemaBase], # noqa: UP007
_disable_qubit_rewiring: bool,
inputs: dict[str, float],
gate_definitions: dict[tuple[Gate, QubitSet], PulseSequence],
Expand Down

0 comments on commit 8ecf2d2

Please sign in to comment.