This is the specific gate I want to implement using pytket: corresponding Wikipedia page
I tried:
from pytket import Circuit
circ = Circuit(1)
circ.U1(angle)
But I got the following error:
pytket._tket.circuit.Circuit' object has no attribute 'U1'

