Given a quiver $Q$ of finite mutation class (such as a Dynkin quiver), I want to use Sage to give me all quivers mutation equivalent to this quiver in terms of pictures. (I am using the Sage online cell for this https://sagecell.sagemath.org/ ) Here my attempts:
Attempt 1:
Q = ClusterQuiver(['A',3])
Ts = Q.mutation_class()
[print(T) for T in Ts]
Attempt 2:
Q = ClusterQuiver(['A',3])
Ts = Q.mutation_class()
[plot(T) for T in Ts]
Both attempts do not work to produce visable pictures. Is there an easy fix? When I use Q.plot() , I get at least a picture of Q itself.