Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

IBMBackend minor doc string fixes #831

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions qiskit_ibm_provider/ibm_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ def _default_options(cls) -> Options:
@property
def dtm(self) -> float:
"""Return the system time resolution of output signals

Returns:
dtm: The output signal timestep in seconds.
"""
Expand All @@ -308,6 +309,7 @@ def meas_map(self) -> List[List[int]]:
"""Return the grouping of measurements which are multiplexed
This is required to be implemented if the backend supports Pulse
scheduling.

Returns:
meas_map: The grouping of measurements which are multiplexed
"""
Expand All @@ -316,13 +318,15 @@ def meas_map(self) -> List[List[int]]:
@property
def target(self) -> Target:
"""A :class:`qiskit.transpiler.Target` object for the backend.

Returns:
Target
"""
return self._get_target()

def target_history(self, datetime: Optional[python_datetime] = None) -> Target:
"""A :class:`qiskit.transpiler.Target` object for the backend.

Returns:
Target with properties found on `datetime`
"""
Expand Down
Loading