Skip to content

Commit

Permalink
Fix docstring surrounding whitespace (Qiskit/qiskit#9689)
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
  • Loading branch information
levbishop and jakelishman authored Mar 1, 2023
1 parent 2e85051 commit b591ff4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion qiskit_algorithms/utils/algorithm_globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

""" Algorithm Globals """
"""Algorithm Globals"""

from typing import Optional
import logging
Expand Down
2 changes: 1 addition & 1 deletion qiskit_algorithms/utils/backend_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

""" backend utility functions """
"""backend utility functions"""

import logging

Expand Down
2 changes: 1 addition & 1 deletion qiskit_algorithms/utils/circuit_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

""" Circuit utility functions """
"""Circuit utility functions"""

import numpy as np

Expand Down
2 changes: 1 addition & 1 deletion qiskit_algorithms/utils/measurement_error_mitigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

""" Measurement error mitigation """
"""Measurement error mitigation"""

import copy
from typing import List, Optional, Tuple, Dict, Callable
Expand Down
2 changes: 1 addition & 1 deletion qiskit_algorithms/utils/quantum_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

""" Quantum Instance module """
"""Quantum Instance module"""

from typing import Optional, List, Union, Dict, Callable, Tuple
from enum import Enum
Expand Down
2 changes: 1 addition & 1 deletion qiskit_algorithms/utils/run_circuits.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

""" run circuits functions """
"""run circuits functions"""

from typing import Optional, Dict, Callable, List, Union, Tuple
import sys
Expand Down

0 comments on commit b591ff4

Please sign in to comment.