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

Fixed flake8 F523

parent 474ea1b3
Branches
Tags
1 merge request!158Adapted test cases to Sympy Version 1.6
......@@ -3,4 +3,4 @@ max-line-length=120
exclude=pystencils/jupyter.py,
pystencils/plot.py
pystencils/session.py
ignore = W293 W503 W291 C901
ignore = W293 W503 W291 C901 E741
......@@ -117,7 +117,7 @@ class Conditional(Node):
if self.true_block:
repr += '\n\t{}) '.format(self.true_block)
if self.false_block:
repr = 'else: '.format(self.false_block)
repr = 'else: '
repr += '\n\t{} '.format(self.false_block)
return repr
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment