Skip to content

Commit

Permalink
fixing hybrid job device doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
krneta committed Nov 2, 2023
1 parent c7dbc0f commit 9bf29c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/braket/jobs/hybrid_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

def hybrid_job(
*,
device: str,
device: str | None,
include_modules: str | ModuleType | Iterable[str | ModuleType] | None = None,
dependencies: str | Path | list[str] | None = None,
local: bool = False,
Expand Down Expand Up @@ -73,7 +73,7 @@ def hybrid_job(
`copy_checkpoints_from_job`, `stopping_condition`, `tags`, and `logger`.
Args:
device (str): Device ARN of the QPU device that receives priority quantum
device (str | None): Device ARN of the QPU device that receives priority quantum
task queueing once the hybrid job begins running. Each QPU has a separate hybrid jobs
queue so that only one hybrid job is running at a time. The device string is accessible
in the hybrid job instance as the environment variable "AMZN_BRAKET_DEVICE_ARN".
Expand Down

0 comments on commit 9bf29c7

Please sign in to comment.