Skip to content

Commit 8e81baf

Browse files
committed
fix: follow up comments again
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
1 parent e89085f commit 8e81baf

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/_pyrepl/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ def gen_colors_from_token_stream(
210210
yield ColorSpan(span, "soft_keyword")
211211
elif (
212212
token.string in BUILTINS
213-
and not (prev_token and prev_token.exact_type == T.DOT)):
213+
and not (prev_token and prev_token.exact_type == T.DOT)
214+
):
214215
span = Span.from_token(token, line_lengths)
215216
yield ColorSpan(span, "builtin")
216217

0 commit comments

Comments
 (0)