Ignoring args parameter for functions that don't use them

pull/3206/head
Brian Daniels 2016-11-08 13:41:40 -06:00
parent f1bb3f5930
commit 119857ac77
1 changed files with 3 additions and 3 deletions

View File

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