Remove useless string literal.
This commit is contained in:
parent
4aa04db573
commit
bc1309255e
|
@ -167,7 +167,7 @@ class ASDLParser(spark.GenericParser, object):
|
||||||
return Product(fields)
|
return Product(fields)
|
||||||
|
|
||||||
def p_sum_0(self, (constructor,)):
|
def p_sum_0(self, (constructor,)):
|
||||||
" sum ::= constructor """
|
" sum ::= constructor "
|
||||||
return [constructor]
|
return [constructor]
|
||||||
|
|
||||||
def p_sum_1(self, (constructor, _, sum)):
|
def p_sum_1(self, (constructor, _, sum)):
|
||||||
|
|
Loading…
Reference in New Issue