No cover if TYPE_CHECKING

This commit is contained in:
Alex Root Junior 2019-11-23 17:03:14 +02:00
parent c9e490bcee
commit 0acdb24c3c
60 changed files with 60 additions and 100 deletions

View file

@ -2,14 +2,7 @@ from .api import methods, types
from .api.client import session
from .api.client.bot import Bot
try:
import uvloop
uvloop.install()
except ImportError:
pass
__all__ = ["__api_version__", "__version__", "types", "methods", "Bot", "session"]
__all__ = ("__api_version__", "__version__", "types", "methods", "Bot", "session")
__version__ = "3.0.0a0"
__api_version__ = "4.4"