Skip to content
Snippets Groups Projects
Commit c83f4f5d authored by Markus Holzer's avatar Markus Holzer
Browse files

Fixed flake8 F523

parent 474ea1b3
No related branches found
No related tags found
No related merge requests found
...@@ -3,4 +3,4 @@ max-line-length=120 ...@@ -3,4 +3,4 @@ max-line-length=120
exclude=pystencils/jupyter.py, exclude=pystencils/jupyter.py,
pystencils/plot.py pystencils/plot.py
pystencils/session.py pystencils/session.py
ignore = W293 W503 W291 C901 ignore = W293 W503 W291 C901 E741
...@@ -117,7 +117,7 @@ class Conditional(Node): ...@@ -117,7 +117,7 @@ class Conditional(Node):
if self.true_block: if self.true_block:
repr += '\n\t{}) '.format(self.true_block) repr += '\n\t{}) '.format(self.true_block)
if self.false_block: if self.false_block:
repr = 'else: '.format(self.false_block) repr = 'else: '
repr += '\n\t{} '.format(self.false_block) repr += '\n\t{} '.format(self.false_block)
return repr return repr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment