Skip to content

Commit

Permalink
Fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tncc committed Nov 1, 2023
1 parent 71ede84 commit eefa56b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-quantum/azure/quantum/qiskit/backends/ionq.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def __init__(self, name: str, provider: "AzureQuantumProvider", **kwargs):


class IonQForteQirBackend(IonQQirBackendBase):
backend_names = ("ionq.qpu.forte-1")
backend_names = ("ionq.qpu.forte-1",)

def __init__(self, name: str, provider: "AzureQuantumProvider", **kwargs):
"""Base class for interfacing with an IonQ Forte QPU backend"""
Expand Down Expand Up @@ -384,7 +384,7 @@ def __init__(self, name: str, provider: "AzureQuantumProvider", **kwargs):


class IonQForteBackend(IonQBackend):
backend_names = ("ionq.qpu.forte-1")
backend_names = ("ionq.qpu.forte-1",)

def __init__(self, name: str, provider: "AzureQuantumProvider", **kwargs):
"""Base class for interfacing with an IonQ Forte QPU backend"""
Expand Down

0 comments on commit eefa56b

Please sign in to comment.