Skip to content

Commit

Permalink
Remove unneeded list
Browse files Browse the repository at this point in the history
  • Loading branch information
ccanel committed Feb 6, 2024
1 parent 0073e90 commit f2849b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unfair/scripts/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ def main(args):
results = [gen_features.parse_exp(*pcap) for pcap in pcaps]
else:
with multiprocessing.Pool(processes=args.parallel) as pol:
results = [pol.starmap(gen_features.parse_exp, pcaps)]
results = pol.starmap(gen_features.parse_exp, pcaps)
# Save raw JFI results from parsed experiments.
with open(data_flp, "wb") as fil:
pickle.dump(results, fil)
Expand Down

0 comments on commit f2849b0

Please sign in to comment.