Skip to content

Commit bd3433c

Browse files
committed
Fix linters/formatters warnings
1 parent 7189295 commit bd3433c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projectq/cengines/_optimize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def receive(self, command_list):
241241
for cmd in command_list:
242242
if cmd.gate == FlushGate(): # flush gate --> optimize and flush
243243
# NB: self.optimize(i) modifies self._l
244-
for idx in self._l: # pylint: disable=consider-using-dict-items
244+
for idx in self._l: # pylint: disable=consider-using-dict-items
245245
self._optimize(idx)
246246
self._send_qubit_pipeline(idx, len(self._l[idx]))
247247
new_dict = {}

0 commit comments

Comments
 (0)