Skip to content

Commit db41511

Browse files
committed
Indent commented-out code.
RedBaron chokes on unindented comments (See PyCQA/baron#139).
1 parent d0dbc46 commit db41511

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

boolean/boolean.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -263,16 +263,16 @@ def is_operator(_t):
263263
if TRACE_PARSE: print(' ast: token_type is TOKEN_NOT:', repr(ast))
264264

265265
elif token_type == TOKEN_AND:
266-
# if not prev_token or not is_sym(prev_token_type):
267-
# raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
266+
# if not prev_token or not is_sym(prev_token_type):
267+
# raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
268268

269269
ast = self._start_operation(ast, self.AND, precedence)
270270
if TRACE_PARSE:
271271
print(' ast:token_type is TOKEN_AND: start_operation', ast)
272272

273273
elif token_type == TOKEN_OR:
274-
# if not prev_token or not is_sym(prev_token_type):
275-
# raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
274+
# if not prev_token or not is_sym(prev_token_type):
275+
# raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
276276

277277
ast = self._start_operation(ast, self.OR, precedence)
278278
if TRACE_PARSE:

0 commit comments

Comments
 (0)