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.
This commit is contained in:
juandspy 2020-01-21 09:57:33 +01:00 committed by GitHub
parent 94882fb1c9
commit a0e528f52e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@ from __future__ import absolute_import, division, print_function
import itertools
import json
import sys
from multiprocessing import cpu_count