Fixed weird indentation
This commit is contained in:
parent
36477385a1
commit
c587f1479c
1 changed files with 1 additions and 8 deletions
|
@ -122,14 +122,7 @@ class RcInstruction:
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
flow = []
|
flow = []
|
||||||
if self._condition is not None:
|
if self._condition is not None:
|
||||||
flow.append(
|
flow.append("when=%s" % (repr(self._condition),))
|
||||||
"when=%s"
|
|
||||||
% (
|
|
||||||
repr(
|
|
||||||
self._condition,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if self._loop is not None:
|
if self._loop is not None:
|
||||||
flow.append(
|
flow.append(
|
||||||
"loop=%s, loop_var=%s" % (repr(self._loop), repr(self._loop_var))
|
"loop=%s, loop_var=%s" % (repr(self._loop), repr(self._loop_var))
|
||||||
|
|
Loading…
Reference in a new issue