Browse Source

Fixed missing import (Issue #202)

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.6.3
Erez Shinan 6 years ago
parent
commit
ef29812520
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lark/lexer.py

+ 1
- 1
lark/lexer.py View File

@@ -4,7 +4,7 @@ import re


from .utils import Str, classify from .utils import Str, classify
from .common import PatternStr, PatternRE, TokenDef from .common import PatternStr, PatternRE, TokenDef
from .exceptions import UnexpectedCharacters
from .exceptions import UnexpectedCharacters, LexError


###{standalone ###{standalone
class Token(Str): class Token(Str):


Loading…
Cancel
Save