From ef1904f6f695bace81e2818eaf4fb12f4bf07715 Mon Sep 17 00:00:00 2001 From: Corey Ostrove Date: Tue, 4 Jun 2024 19:37:51 -0600 Subject: [PATCH] Fix indentation error Fixes minor error in split_circuits. --- pygsti/models/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygsti/models/model.py b/pygsti/models/model.py index 8622f7d50..b5298c98d 100644 --- a/pygsti/models/model.py +++ b/pygsti/models/model.py @@ -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]