Skip to content

Commit

Permalink
Fix indentation error
Browse files Browse the repository at this point in the history
Fixes minor error in split_circuits.
  • Loading branch information
Corey Ostrove committed Jun 5, 2024
1 parent cdd3d50 commit ef1904f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygsti/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1311,7 +1311,7 @@ def split_circuits(self, circuits, erroron=('prep', 'povm'), split_prep=True, sp
else:
povm_lbl = None
circuit = ckt
split_circuits.append((None, circuit, povm_lbl))
split_circuits.append((None, circuit, povm_lbl))

else:
split_circuits = [(None, ckt, None) for ckt in circuits]
Expand Down

0 comments on commit ef1904f

Please sign in to comment.