[nailgun] flake8 fails for fuelmenu in master
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Fuel for OpenStack |
Fix Committed
|
Critical
|
Evgeniy L |
Bug Description
pep8 runtests: commands[0] | flake8 .
./fuelmenu/
import itertools
^
./fuelmenu/
import common.network as network
^
Check for imports in alphabetical order.
OpenStack HACKING guide recommendation for imports:
imports in human alphabetical order
Okay: import os\nimport sys\n\nimport nova\nfrom nova import test
Okay: import os\nimport sys
H306: import sys\nimport os
./fuelmenu/
from random import choice
^
Check for imports in alphabetical order.
OpenStack HACKING guide recommendation for imports:
imports in human alphabetical order
Okay: import os\nimport sys\n\nimport nova\nfrom nova import test
Okay: import os\nimport sys
H306: import sys\nimport os
./fuelmenu/
import collections
^
./fuelmenu/
Avoid extraneous whitespace in the following situations:
- More than one space around an assignment (or other) operator to
align it with another.
Note: these checks are disabled by default
Okay: a = (1, 2)
E241: a = (1, 2)
E242: a = (1,\t2)
./fuelmenu/
Avoid extraneous whitespace in the following situations:
- More than one space around an assignment (or other) operator to
align it with another.
Note: these checks are disabled by default
Okay: a = (1, 2)
E241: a = (1, 2)
E242: a = (1,\t2)
./fuelmenu/
Avoid extraneous whitespace in the following situations:
- More than one space around an assignment (or other) operator to
align it with another.
Note: these checks are disabled by default
Okay: a = (1, 2)
E241: a = (1, 2)
E242: a = (1,\t2)
7
ERROR: InvocationError: '/home/
_______
ERROR: pep8: commands failed
Failed tests: flake8_checks
summary: |
- flake8 fails for fuelmenu in master + [nailgun] flake8 fails for fuelmenu in master |
Fix proposed to branch: master /review. openstack. org/102464
Review: https:/