Use relative imports

This commit is contained in:
Alex Root Junior 2017-07-24 22:31:25 +03:00
parent 84f3b8fdd5
commit 3016c7e798
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
from aiogram.utils.versions import Version
from .utils.versions import Version, Stage
from .bot import Bot
VERSION = Version(0, 3, 2, build=2)
VERSION = Version(0, 3, 2, stage=Stage.FINAL, build=3)
__version__ = VERSION.version

View file

@ -1,4 +1,4 @@
from aiogram.utils import json
from . import json
DEFAULT_FILTER = ['self']

View file

@ -1,4 +1,4 @@
from aiogram.utils.helper import Helper, HelperMode, Item
from .helper import Helper, HelperMode, Item
class Version: