Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Bindgen
pystencils
Commits
c83f4f5d
Commit
c83f4f5d
authored
Jun 19, 2020
by
Markus Holzer
Browse files
Fixed flake8 F523
parent
474ea1b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
.flake8
View file @
c83f4f5d
...
...
@@ -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
pystencils/astnodes.py
View file @
c83f4f5d
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment