Use wildcard import syntax in __init__.pyi.

This commit is contained in:
KmolYuan 2020-02-15 18:12:32 +08:00
parent 39aa08d223
commit 42fa4ed1af
1 changed files with 5 additions and 6 deletions

View File

@ -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