Skip to content

Commit 9547066

Browse files
committed
fix quantum folder
1 parent 06c8abc commit 9547066

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

quantum/ripple_adder_classic.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
from qiskit import Aer, QuantumCircuit, execute
66
from qiskit.providers import BaseBackend
7+
from typing import Tuple
78

89

9-
def store_two_classics(val1: int, val2: int) -> (QuantumCircuit, str, str):
10+
def store_two_classics(val1: int, val2: int) -> Tuple[QuantumCircuit, str, str]:
1011
"""
1112
Generates a Quantum Circuit which stores two classical integers
1213
Returns the circuit and binary representation of the integers

0 commit comments

Comments
 (0)