Skip to content

Commit

Permalink
Remove local service
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 committed Jul 5, 2024
1 parent 56a06a3 commit 744627b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions qiskit_ibm_runtime/fake_provider/fake_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
from qiskit.providers.basic_provider import BasicSimulator

from qiskit_ibm_runtime.utils.backend_converter import convert_to_target
from .local_service import QiskitRuntimeLocalService
from .. import QiskitRuntimeService
from ..utils.backend_encoder import BackendEncoder

Expand Down Expand Up @@ -100,7 +99,6 @@ def __init__(self) -> None:
)
self._target = None
self.sim = None
self._service = QiskitRuntimeLocalService()

if "channels" in self._conf_dict:
self._parse_channels(self._conf_dict["channels"])
Expand Down Expand Up @@ -178,15 +176,6 @@ def _load_json(self, filename: str) -> dict:
the_json = json.load(f_json)
return the_json

@property
def service(self) -> QiskitRuntimeLocalService:
"""Return the ``service`` object
Returns:
service: instance of QiskitRuntimeLocalService
"""
return self._service

def status(self) -> BackendStatus:
"""Return the backend status.
Expand Down

0 comments on commit 744627b

Please sign in to comment.