mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2025-07-25 15:29:50 +03:00
Fix TypeError in Py3
This commit is contained in:
parent
c4e60ca2a8
commit
88b1cea98c
|
@ -44,7 +44,7 @@ def parse_tsv(line):
|
||||||
line = line.decode()
|
line = line.decode()
|
||||||
if line and line[-1] == '\n':
|
if line and line[-1] == '\n':
|
||||||
line = line[:-1]
|
line = line[:-1]
|
||||||
return [unescape(value) for value in line.split(b'\t')]
|
return [unescape(value) for value in line.split(str('\t'))]
|
||||||
|
|
||||||
|
|
||||||
def parse_array(array_string):
|
def parse_array(array_string):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user