Skip to content

Commit c2d0ced

Browse files
committed
fix a small bug in sql
1 parent d74a2a1 commit c2d0ced

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

asdl/lang/sql/sql_transition_system.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def get_valid_continuation_types(self, hyp):
130130
return ApplyRuleAction,
131131

132132
def get_primitive_field_actions(self, realized_field):
133-
if realized_field.type.name == 'column_idx' is not None:
133+
if realized_field.type.name == 'column_idx':
134134
return [WikiSqlSelectColumnAction(int(realized_field.value))]
135135
elif realized_field.type.name == 'string':
136136
tokens = str(realized_field.value).split(' ') + ['</primitive>']
@@ -169,4 +169,4 @@ def check():
169169

170170

171171
if __name__ == '__main__':
172-
check()
172+
check()

0 commit comments

Comments
 (0)