Skip to content
Snippets Groups Projects
Commit 0d3b396a authored by Matt Traudt's avatar Matt Traudt
Browse files

Removed unused function

parent f1d485eb
No related branches found
No related tags found
No related merge requests found
......@@ -12,19 +12,6 @@ from datetime import timedelta
from statistics import mean
def read_result_file(fname, starting_dict=None):
data = starting_dict if starting_dict else {}
with open(fname, 'rt') as fd:
for line in fd:
d = json.loads(line)
res = Result.from_dict(d)
fp = d['fingerprint']
if fp not in data:
data[fp] = []
data[fp].append(res)
return data
def _print_stats_error_types(data):
counts = {'total': 0}
for fp in data:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment