Cython: Fixed bug in tab formatter with header option always being set

to true
This commit is contained in:
Celine Mercier
2019-09-21 18:27:47 +02:00
parent ec0737a600
commit 974d25b815

View File

@ -9,7 +9,7 @@ from obitools3.dms.column.column cimport Column_line
cdef class TabFormat:
def __init__(self, header=True, bytes NAString=b"NA", bytes sep=b"\t"):
self.header = True
self.header = header
self.first_line = True
self.NAString = NAString
self.sep = sep