Skip to content

Commit

Permalink
change: remove extraneous TODOs (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
avawang1 authored Aug 11, 2020
1 parent a978a4d commit 53ba422
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
2 changes: 0 additions & 2 deletions src/braket/circuits/circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
SubroutineCallable = TypeVar("SubroutineCallable", bound=Callable[..., SubroutineReturn])
AddableTypes = TypeVar("AddableTypes", SubroutineReturn, SubroutineCallable)

# TODO: Add parameterization


class Circuit:
"""
Expand Down
3 changes: 0 additions & 3 deletions src/braket/circuits/instruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
from braket.circuits.qubit import QubitInput
from braket.circuits.qubit_set import QubitSet, QubitSetInput

# TODO: Add parameters support
# TODO: Rename to QuantumInstruction, and change Operator to Gate, then rename "target" to "qubits"

# InstructionOperator is a type alias, and it can be expanded to include other operators
InstructionOperator = Gate

Expand Down
4 changes: 1 addition & 3 deletions src/braket/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
# language governing permissions and limitations under the License.

import braket.ipython_utils as ipython_utils
from braket.tasks.annealing_quantum_task_result import ( # noqa: F401 # TODO: remove
AnnealingQuantumTaskResult,
)
from braket.tasks.annealing_quantum_task_result import AnnealingQuantumTaskResult # noqa: F401
from braket.tasks.gate_model_quantum_task_result import GateModelQuantumTaskResult # noqa: F401
from braket.tasks.quantum_task import QuantumTask # noqa: F401

Expand Down

0 comments on commit 53ba422

Please sign in to comment.