more readable imports

This commit is contained in:
stef 2016-08-20 19:37:22 +02:00 committed by Stephane Martin
parent 2731531768
commit 6a043f4a7d
18 changed files with 32 additions and 32 deletions

View file

@ -3,8 +3,8 @@ from __future__ import absolute_import
import click
from flask import current_app
from ... import search, cli_group
from ..wiki.models import Wiki
from realms import search, cli_group
from realms.modules.wiki.models import Wiki
@cli_group(short_help="Search Module")

View file

@ -1,7 +1,7 @@
from __future__ import absolute_import
from ..wiki.models import WikiPage
from ... import search
from realms import search
from realms.modules.wiki.models import WikiPage
@WikiPage.after('write')

View file

@ -5,7 +5,7 @@ import sys
from flask import g, current_app
from ...lib.util import filename_to_cname
from realms.lib.util import filename_to_cname
def simple(app):