mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Remove unnecessary list() call
This commit is contained in:
parent
6f4806bfb3
commit
3f27e92eb0
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ class ParseContext:
|
|||
"""Contains the state of the parser."""
|
||||
|
||||
def __init__(self, tokens: T.List[Token], index=0):
|
||||
self.tokens = list(tokens)
|
||||
self.tokens = tokens
|
||||
|
||||
self.binding_power = 0
|
||||
self.index = index
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue