From 1ed462a29a8a303d78f423d8c161a1d5894bee6d Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 16 Jul 2020 01:00:38 +0300 Subject: [PATCH] PyLint fix --- platformio/commands/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/commands/lib.py b/platformio/commands/lib.py index a1593732..5bd38aee 100644 --- a/platformio/commands/lib.py +++ b/platformio/commands/lib.py @@ -495,7 +495,7 @@ def lib_show(library, json_output): @cli.command("register", short_help="Deprecated") @click.argument("config_url") -def lib_register(config_url): +def lib_register(config_url): # pylint: disable=unused-argument raise exception.UserSideException( "This command is deprecated. Please use `pio package publish` command." )