Commit 185a2a13 authored by hardy's avatar hardy

remove dead code

parent a272c63d
......@@ -171,13 +171,11 @@ def build_RT_Row(Branch,Commit,keys,filename):
real_time_stats[k]=tmp.group(1)
f.close()
rt={}
for k in keys:
tmp=re.match(r'^(?P<metric>.*):\s+(?P<avg>\d+\.\d+) us;\s+\d+;\s+(?P<max>\d+\.\d+) us;',real_time_stats[k])
metric=tmp.group('metric')
avg=tmp.group('avg')
max=tmp.group('max')
rt[metric]={'avg' : avg, 'max' : max}
row.append(float(avg))
row.append(float(max))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment