We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a81b3aa commit 475412dCopy full SHA for 475412d
src/spdx_tools/spdx/parser/tagvalue/parser.py
@@ -219,7 +219,8 @@ def p_text(self, p):
219
@grammar_rule(
220
"text_or_line : LINE\n line_or_no_assertion : LINE\nline_or_no_assertion_or_none : text_or_line\n"
221
"text_or_line_including_no_assertion : text_or_line\ntext_or_line_including_no_assertion : NO_ASSERTION\n"
222
- "text_or_line_including_no_assertion : NONE")
+ "text_or_line_including_no_assertion : NONE"
223
+ )
224
def p_line(self, p):
225
p[0] = p[1]
226
0 commit comments