]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix indentation in Parser/tokenizer.c (#105012)
authorPetr Vaněk <arkamar@atlas.cz>
Sat, 27 May 2023 11:41:50 +0000 (13:41 +0200)
committerGitHub <noreply@github.com>
Sat, 27 May 2023 11:41:50 +0000 (12:41 +0100)
Parser/tokenizer.c

index 1e8f785a331ac52e96bc23670a3efb07b1f54847..a7651b1bd864308868795b8913cee9d3b3594af7 100644 (file)
@@ -1760,7 +1760,7 @@ tok_get_normal_mode(struct tok_state *tok, tokenizer_mode* current_tok, struct t
     tok->starting_col_offset = tok->col_offset;
 
     /* Return pending indents/dedents */
-   if (tok->pendin != 0) {
+    if (tok->pendin != 0) {
         if (tok->pendin < 0) {
             if (tok->tok_extra_tokens) {
                 p_start = tok->cur;