Skip to content

Commit 9755fc2

Browse files
committed
remove end symbol
1 parent a242be9 commit 9755fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Query:
1111

1212
agg_ops = ['', 'MAX', 'MIN', 'COUNT', 'SUM', 'AVG']
1313
cond_ops = ['=', '>', '<', 'OP']
14-
syms = ['SELECT', 'WHERE', 'AND', 'COL', 'TABLE', 'CAPTION', 'PAGE', 'SECTION', 'OP', 'COND', 'QUESTION', 'AGG', 'AGGOPS', 'CONDOPS', 'END']
14+
syms = ['SELECT', 'WHERE', 'AND', 'COL', 'TABLE', 'CAPTION', 'PAGE', 'SECTION', 'OP', 'COND', 'QUESTION', 'AGG', 'AGGOPS', 'CONDOPS']
1515

1616
def __init__(self, sel_index, agg_index, conditions=tuple()):
1717
self.sel_index = sel_index

0 commit comments

Comments
 (0)