Skip to content

Commit 1a55555

Browse files
authored
Merge pull request #278 from SoftwareQuTech/fix-cli
fix(cli) fixes issue with looping over backends
2 parents 7f479a2 + 2d4b4ce commit 1a55555

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simulaqron/simulaqron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def default():
231231

232232

233233
@set.command()
234-
@click.argument('value', type=click.Choice([b.value for b in SimBackend.value]))
234+
@click.argument('value', type=click.Choice([b.value for b in SimBackend]))
235235
def sim_backend(value):
236236
"""The backend to use (stabilizer, projectq, qutip)."""
237237
simulaqron_settings.sim_backend = value

0 commit comments

Comments
 (0)