Changeset - 1c68258b14bc
[Not reviewed]
default
0 1 0
Thomas De Schampheleire - 7 years ago 2018-12-01 22:04:58
thomas.de_schampheleire@nokia.com
tests: notifications: increase indentation of multi-line for loop condition

Code in question is:

for foo in [
item1,
item2,
item3]:
action1
action2

With the above indentation, a quick glance at the code does not show where
the actions start.

Using a double indentation for line continuation avoids this problem:

for foo in [
item1,
item2,
item3]:
action1
action2

There are no actual code changes in this commit.
0 files changed with 0 insertions and 0 deletions:
0 comments (0 inline, 0 general)
0 comments (0 inline, 0 general)