disable too-many-args for main
This commit is contained in:
parent
ae5cc2a9b4
commit
63dcbb9944
1 changed files with 2 additions and 1 deletions
|
|
@ -1454,7 +1454,8 @@ def tags_data_save_tag(key, tag):
|
||||||
message="%(prog)s, A CircuitPython module updater. Version %(version)s",
|
message="%(prog)s, A CircuitPython module updater. Version %(version)s",
|
||||||
)
|
)
|
||||||
@click.pass_context
|
@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.
|
A tool to manage and update libraries on a CircuitPython device.
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue