mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 18:19:34 +00:00
Use relative imports
This commit is contained in:
parent
84f3b8fdd5
commit
3016c7e798
3 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from aiogram.utils import json
|
||||
from . import json
|
||||
|
||||
DEFAULT_FILTER = ['self']
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from aiogram.utils.helper import Helper, HelperMode, Item
|
||||
from .helper import Helper, HelperMode, Item
|
||||
|
||||
|
||||
class Version:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue