Skip to content

Commit 77c505b

Browse files
author
lev
committed
gmt.py: min # of fields on a line is 3, not 4
1 parent 1f11616 commit 77c505b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmapPy/pandasGEXpress/gmt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def read(file_path):
3838
# Separate along tabs
3939
fields = line.split('\t')
4040

41-
assert len(fields) > 3, (
41+
assert len(fields) > 2, (
4242
"Each line must have at least 3 tab-delimited items. " +
4343
"line_num: {}, fields: {}").format(line_num, fields)
4444

0 commit comments

Comments
 (0)