Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Apr 27, 2024
1 parent aec4fa9 commit 2b8fb44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/blib2to3/pgen2/tokenize.py
Expand Up @@ -622,10 +622,10 @@ def generate_tokens(
spos = strstart
epos = (lnum, end)
tokenline = contline + line
if (
fstring_state.current() in (STATE_NOT_FSTRING, STATE_IN_BRACES)
and not is_fstring_start(token)
):
if fstring_state.current() in (
STATE_NOT_FSTRING,
STATE_IN_BRACES,
) and not is_fstring_start(token):
yield (STRING, token, spos, epos, tokenline)
endprog_stack.pop()
parenlev = parenlev_stack.pop()
Expand Down

0 comments on commit 2b8fb44

Please sign in to comment.