in qumat/cirq_backend.py [0:0]
def apply_ry_gate(circuit, qubit_index, angle): param = sympy.Symbol(angle) if isinstance(angle, str) else angle qubit = cirq.LineQubit(qubit_index) circuit.append(cirq.ry(param).on(qubit))