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 -*- # -*- coding: utf-8 -*-
from .tree import Tree from .tree import *
from .visitors import Transformer, Visitor, v_args, Discard from .visitors import *
from .visitors import InlineTransformer, inline_args # XXX Deprecated from .exceptions import *
from .exceptions import ParseError, LexError, GrammarError, UnexpectedToken, UnexpectedInput, UnexpectedCharacters from .lexer import *
from .lexer import Token from .lark import *
from .lark import Lark
__version__: str __version__: str