diff options
| author | persianpros <persianpros@yahoo.com> | 2021-04-13 23:18:03 +0430 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2021-04-17 06:47:18 -0700 |
| commit | 4099668975309217b316f295b76d3d462c8c0e40 (patch) | |
| tree | 3db5df40b232850385f49a71df772df39d182b14 /contrib | |
| parent | e8c50177ef44e496ef13011a2f57db5b67805cc6 (diff) | |
| download | meta-openembedded-4099668975309217b316f295b76d3d462c8c0e40.tar.gz | |
PEP8 double aggressive E20 and E211
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 9c8810de37d10573c4220111a2694f73a2260106)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'contrib')
| -rwxr-xr-x | contrib/oe-stylize.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/oe-stylize.py b/contrib/oe-stylize.py index 6f2b96c381..7958797059 100755 --- a/contrib/oe-stylize.py +++ b/contrib/oe-stylize.py | |||
| @@ -312,10 +312,10 @@ def follow_rule(i, line): | |||
| 312 | # if the line still does not respect the rule | 312 | # if the line still does not respect the rule |
| 313 | if not rules[i][0](line): | 313 | if not rules[i][0](line): |
| 314 | # this is a rule disgression | 314 | # this is a rule disgression |
| 315 | print ("## Disgression: ", rules[i][2], " in: '", oldline, "'") | 315 | print("## Disgression: ", rules[i][2], " in: '", oldline, "'") |
| 316 | else: | 316 | else: |
| 317 | # just remind user about his/her errors | 317 | # just remind user about his/her errors |
| 318 | print ("## Reminder: ", rules[i][2], " in : '", oldline, "'") | 318 | print("## Reminder: ", rules[i][2], " in : '", oldline, "'") |
| 319 | return line | 319 | return line |
| 320 | 320 | ||
| 321 | 321 | ||
| @@ -389,7 +389,7 @@ if __name__ == "__main__": | |||
| 389 | line = follow_rule(5, line) | 389 | line = follow_rule(5, line) |
| 390 | if var == "": | 390 | if var == "": |
| 391 | if not in_routine: | 391 | if not in_routine: |
| 392 | print ("## Warning: unknown variable/routine \"%s\"" % originalLine.rstrip('\n')) | 392 | print("## Warning: unknown variable/routine \"%s\"" % originalLine.rstrip('\n')) |
| 393 | var = 'others' | 393 | var = 'others' |
| 394 | for c in commentBloc: | 394 | for c in commentBloc: |
| 395 | seen_vars[var].append(c) | 395 | seen_vars[var].append(c) |
