From 63dcbb994435aee4cfb0b45f16fd5ecf4fee85c3 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Sat, 28 Oct 2023 12:10:03 -0500 Subject: [PATCH] disable too-many-args for main --- circup/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circup/__init__.py b/circup/__init__.py index faf558b..89c90c6 100644 --- a/circup/__init__.py +++ b/circup/__init__.py @@ -1454,7 +1454,8 @@ def tags_data_save_tag(key, tag): message="%(prog)s, A CircuitPython module updater. Version %(version)s", ) @click.pass_context -def main(ctx, verbose, path, host, password, board_id, cpy_version): # pragma: no cover +def main(ctx, verbose, path, host, password, board_id, cpy_version): # pragma: no cover + # pylint: disable=too-many-arguments """ A tool to manage and update libraries on a CircuitPython device. """