From 977877883049daf5390b71210fd9c32da0f7be0e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 24 Feb 2019 11:45:14 +0200 Subject: [PATCH] PyLin fix --- platformio/commands/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/commands/ci.py b/platformio/commands/ci.py index a5f28256..0b5b3e4e 100644 --- a/platformio/commands/ci.py +++ b/platformio/commands/ci.py @@ -73,7 +73,7 @@ def validate_path(ctx, param, value): # pylint: disable=unused-argument @click.option("-O", "--project-option", multiple=True) @click.option("-v", "--verbose", is_flag=True) @click.pass_context -def cli( # pylint: disable=too-many-arguments +def cli( # pylint: disable=too-many-arguments, too-many-branches ctx, src, lib, exclude, board, build_dir, keep_build_dir, project_conf, project_option, verbose):