From 72a14bfac9a02e342eaa7091cd98abfb9a118aec Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Thu, 21 Oct 2021 20:56:06 +0000 Subject: [PATCH] minor fix Signed-off-by: Arthur Lu --- src/cli/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/module.py b/src/cli/module.py index 518ebf7..6fdfb2e 100644 --- a/src/cli/module.py +++ b/src/cli/module.py @@ -62,7 +62,7 @@ class Match: competitions = d.get_team_conpetitions(self.apikey, team, scope) # unimplemented for competition in competitions: for variable in self.config["tests"]: - match_data = d.get_team_match_data(self.apikey, competition, team) # needs modified implementation + match_data = d.get_team_match_data(self.apikey, competition, team, variable) # needs modified implementation self.data.append((team, competition, variable, match_data)) def process_data(self, exec_threads):