Fixed weird indentation

This commit is contained in:
Emmanuel BENOîT 2022-09-04 12:21:09 +02:00
parent 36477385a1
commit c587f1479c

View file

@ -122,14 +122,7 @@ class RcInstruction:
def __repr__(self):
flow = []
if self._condition is not None:
flow.append(
"when=%s"
% (
repr(
self._condition,
)
)
)
flow.append("when=%s" % (repr(self._condition),))
if self._loop is not None:
flow.append(
"loop=%s, loop_var=%s" % (repr(self._loop), repr(self._loop_var))