Skip to content

Commit e7f0da5

Browse files
committed
fix extra tsv file creation
1 parent 3e5ad11 commit e7f0da5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/assignment_io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ def flush(self):
6969
class TextFileAssignmentPrinter(AbstractAssignmentPrinter):
7070
def __init__(self, output_file_name, params, assignment_checker=PrintAllFunctor(), gzipped=False):
7171
AbstractAssignmentPrinter.__init__(self, output_file_name, params, assignment_checker)
72-
self.dumper = open(self.output_file_name, "wb")
7372
self.gzipped = gzipped
7473
if gzipped:
7574
self.output_file = gzip.open(output_file_name + ".gz", "wt")

0 commit comments

Comments
 (0)