Skip to content

Commit 119857a

Browse files
committed
Ignoring args parameter for functions that don't use them
1 parent f1bb3f5 commit 119857a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/test/examples/examples.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,19 @@ def do_export(args, config, examples):
9090
return failures
9191

9292

93-
def do_import(args, config, examples):
93+
def do_import(_, config, examples):
9494
"""Do the import step of this process"""
9595
lib.source_repos(config, examples)
9696
return 0
9797

9898

99-
def do_clone(args, config, examples):
99+
def do_clone(_, config, examples):
100100
"""Do the clone step of this process"""
101101
lib.clone_repos(config, examples)
102102
return 0
103103

104104

105-
def do_deploy(args, config, examples):
105+
def do_deploy(_, config, examples):
106106
"""Do the deploy step of this process"""
107107
lib.deploy_repos(config, examples)
108108
return 0

0 commit comments

Comments
 (0)