mirror of https://github.com/ARMmbed/mbed-os.git
Ignoring args parameter for functions that don't use them
parent
f1bb3f5930
commit
119857ac77
|
@ -90,19 +90,19 @@ def do_export(args, config, examples):
|
||||||
return failures
|
return failures
|
||||||
|
|
||||||
|
|
||||||
def do_import(args, config, examples):
|
def do_import(_, config, examples):
|
||||||
"""Do the import step of this process"""
|
"""Do the import step of this process"""
|
||||||
lib.source_repos(config, examples)
|
lib.source_repos(config, examples)
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
def do_clone(args, config, examples):
|
def do_clone(_, config, examples):
|
||||||
"""Do the clone step of this process"""
|
"""Do the clone step of this process"""
|
||||||
lib.clone_repos(config, examples)
|
lib.clone_repos(config, examples)
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
def do_deploy(args, config, examples):
|
def do_deploy(_, config, examples):
|
||||||
"""Do the deploy step of this process"""
|
"""Do the deploy step of this process"""
|
||||||
lib.deploy_repos(config, examples)
|
lib.deploy_repos(config, examples)
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in New Issue