mirror of https://github.com/lark-parser/lark.git
Use wildcard import syntax in __init__.pyi.
This commit is contained in:
parent
39aa08d223
commit
42fa4ed1af
|
@ -1,10 +1,9 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from .tree import Tree
|
||||
from .visitors import Transformer, Visitor, v_args, Discard
|
||||
from .visitors import InlineTransformer, inline_args # XXX Deprecated
|
||||
from .exceptions import ParseError, LexError, GrammarError, UnexpectedToken, UnexpectedInput, UnexpectedCharacters
|
||||
from .lexer import Token
|
||||
from .lark import Lark
|
||||
from .tree import *
|
||||
from .visitors import *
|
||||
from .exceptions import *
|
||||
from .lexer import *
|
||||
from .lark import *
|
||||
|
||||
__version__: str
|
||||
|
|
Loading…
Reference in New Issue