disable too-many-args for main

This commit is contained in:
foamyguy 2023-10-28 12:10:03 -05:00
parent ae5cc2a9b4
commit 63dcbb9944

View file

@ -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.
"""