Skip to content

Commit

Permalink
Add instance param to localService backend() (#1795)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 authored Jul 9, 2024
1 parent 475b96f commit bdefc12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qiskit_ibm_runtime/fake_provider/local_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def __init__(self) -> None:
"""
self._channel_strategy = None

def backend(self, name: str = None) -> FakeBackendV2:
def backend(
self, name: str = None, instance: str = None # pylint: disable=unused-argument
) -> FakeBackendV2:
"""Return a single fake backend matching the specified filters.
Args:
Expand Down

0 comments on commit bdefc12

Please sign in to comment.