added result logging for metric module

This commit is contained in:
Arthur Lu 2022-03-29 21:17:58 +00:00
parent fdcdadb8b2
commit 69c6059ff8

View File

@ -174,6 +174,8 @@ class Metric (Module):
def _process_data(self):
self.results = {}
matches = self.data
red = {}
@ -243,6 +245,8 @@ class Metric (Module):
temp_vector.update(red) # update the team's score with the temporay vector
temp_vector.update(blu)
self.results[match['match']] = temp_vector
d.push_metric(self.apikey, self.competition, temp_vector) # push new scores to db
def _push_results(self):