Remove debug lines

This commit is contained in:
Leonardo Bautista-Gomez 2023-04-21 07:14:45 +02:00
parent c7f9577d45
commit 9d699ada51
1 changed files with 0 additions and 2 deletions

View File

@ -99,7 +99,6 @@ class Visualizer:
"""Create a new key with the other items in the tuple"""
if item.startswith('run_'):
newKey = tuple([x for x in key if x != item])
print(newKey)
"""Average the similar key values"""
total = [0] * len(data[key]['ttas'])
for i in range(runs):
@ -107,7 +106,6 @@ class Visualizer:
for cnt, tta in enumerate(data[key0]['ttas']):
total[cnt] += tta
allTta.append(tta)
print(tta)
for i in range(len(total)):
total[i] = total[i]/runs
averages = {}