mirror of https://github.com/astral-sh/ruff
Merge pull request #4377 from andersk/duplicate-from
Remove duplicate declaration of "from" token
This commit is contained in:
commit
201d08583a
|
|
@ -1428,10 +1428,9 @@ extern {
|
|||
"from" => lexer::Tok::From,
|
||||
"global" => lexer::Tok::Global,
|
||||
"if" => lexer::Tok::If,
|
||||
"import" => lexer::Tok::Import,
|
||||
"in" => lexer::Tok::In,
|
||||
"is" => lexer::Tok::Is,
|
||||
"import" => lexer::Tok::Import,
|
||||
"from" => lexer::Tok::From,
|
||||
"lambda" => lexer::Tok::Lambda,
|
||||
"nonlocal" => lexer::Tok::Nonlocal,
|
||||
"not" => lexer::Tok::Not,
|
||||
|
|
|
|||
Loading…
Reference in New Issue