aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-16 16:46:39 -0400
committerJack Lloyd <[email protected]>2017-09-16 16:46:39 -0400
commit29cd88ad30abbc22ffdb5e10a493794fe0ee082b (patch)
tree305fbcdda42cc30cd54d259ebd8298ac7cc846bc /src
parentd00fa294b207365fed288afd2d3e07ed9e8cb641 (diff)
Fix lint
Diffstat (limited to 'src')
-rwxr-xr-xsrc/scripts/ci_build.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py
index 067dc2d62..d2b83fd5e 100755
--- a/src/scripts/ci_build.py
+++ b/src/scripts/ci_build.py
@@ -279,15 +279,15 @@ def have_prog(prog):
return True
def main(args=None):
- # pylint: disable=too-many-branches,too-many-statements,too-many-locals
+ # pylint: disable=too-many-branches,too-many-statements,too-many-locals,too-many-return-statements
+ """
+ Parse options, do the things
+ """
if os.getenv('COVERITY_SCAN_BRANCH') == '1':
print('Skipping build COVERITY_SCAN_BRANCH set in environment')
return 0
- """
- Parse options, do the things
- """
(options, args) = parse_args(args or sys.argv)
if len(args) != 2: