From a0e528f52ebbc0a26fd78b11015d36f0ff460d75 Mon Sep 17 00:00:00 2001 From: juandspy <42124482+juandspy@users.noreply.github.com> Date: Tue, 21 Jan 2020 09:57:33 +0100 Subject: [PATCH] Update evaluate.py The package ```sys``` was not imported and gives a ```NameError: name 'sys' is not defined``` in line 96 when no test_file was provided. I added the import statement. --- evaluate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/evaluate.py b/evaluate.py index 435a6be8..01385039 100755 --- a/evaluate.py +++ b/evaluate.py @@ -4,6 +4,7 @@ from __future__ import absolute_import, division, print_function import itertools import json +import sys from multiprocessing import cpu_count