Skip to content

Commit ca1b7c2

Browse files
authored
Formatting issues in dynamical_decoupling_options.py (#2262)
1 parent a01bf4a commit ca1b7c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

qiskit_ibm_runtime/options/dynamical_decoupling_options.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,40 +24,40 @@ class DynamicalDecouplingOptions:
2424
enable: Union[UnsetType, bool] = Unset
2525
r"""Whether to enable DD as specified by the other options in this class.
2626
27-
Default: False.
27+
Default: ``False``.
2828
"""
2929
sequence_type: Union[UnsetType, Literal["XX", "XpXm", "XY4"]] = Unset
3030
r"""Which dynamical decoupling sequence to use.
3131
32-
Default: "XX".
32+
Default: ``"XX"``.
3333
3434
* ``"XX"``: use the sequence ``tau/2 - (+X) - tau - (+X) - tau/2``
3535
* ``"XpXm"``: use the sequence ``tau/2 - (+X) - tau - (-X) - tau/2``
36-
* ``"XY4"``: : use the sequence
37-
``tau/2 - (+X) - tau - (+Y) - tau (-X) - tau - (-Y) - tau/2``
36+
* ``"XY4"``: use the sequence
37+
``tau/2 - (+X) - tau - (+Y) - tau (-X) - tau - (-Y) - tau/2``
3838
"""
3939
extra_slack_distribution: Union[UnsetType, Literal["middle", "edges"]] = Unset
4040
r"""Where to put extra timing delays due to rounding issues.
4141
Rounding issues arise because the discrete time step ``dt`` of the system cannot
4242
be divided. This option takes following values.
4343
44-
Default: "middle".
44+
Default: ``"middle"``.
4545
4646
* ``"middle"``: Put the extra slack to the interval at the middle of the sequence.
4747
* ``"edges"``: Divide the extra slack as evenly as possible into intervals at
48-
beginning and end of the sequence.
48+
beginning and end of the sequence.
4949
"""
5050
scheduling_method: Union[UnsetType, Literal["alap", "asap"]] = Unset
5151
r"""Whether to schedule gates as soon as ("asap") or
5252
as late as ("alap") possible.
5353
54-
Default: "alap".
54+
Default: ``"alap"``.
5555
"""
5656
skip_reset_qubits: Union[UnsetType, bool] = Unset
5757
r"""Whether to insert DD on idle periods that immediately follow initialized/reset qubits.
5858
5959
Since qubits in the ground state are less susceptible to decoherence, it can be beneficial
6060
to let them be while they are known to be in this state.
6161
62-
Default: False.
62+
Default: ``False``.
6363
"""

0 commit comments

Comments
 (0)