config test

This commit is contained in:
David 2023-01-04 13:55:41 +01:00
parent 7d93cb761f
commit 25fb7339cd
1 changed files with 2 additions and 0 deletions

View File

@ -85,6 +85,8 @@ class Stats:
tot_part_start = tot_part_end = 0
tot_part_stat = self.db.dbQuery(f"""SELECT value_field FROM {dbName} WHERE timestamp = {self.startDate} AND key_field = 'total_participants'""")[-1][0]
tot_part_end = self.db.dbQuery(f"""SELECT value_field FROM {dbName} WHERE timestamp < {self.endDate} AND key_field = 'total_participants'""")[-1][0]
print(tot_part_end)
print(tot_part_start)
tot_part = int(tot_part_end) - int(tot_part_start)
print(tot_part)