Skip to content

Commit

Permalink
Change MARA_XXX variables to functions to delay importing of imports …
Browse files Browse the repository at this point in the history
…(requires updating mara-app to 2.0.0)
  • Loading branch information
martin-loetzsch committed Apr 12, 2019
1 parent 1105a9c commit 2115511
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions bingads_downloader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
from bingads_downloader import cli, config
"""Make the functionalities of this package auto-discoverable by mara-app"""

MARA_CONFIG_MODULES = [config]

MARA_CLICK_COMMANDS = [cli.download_data, cli.refresh_oauth2_token]
def MARA_CONFIG_MODULES():
from . import config
return [config]


def MARA_FLASK_BLUEPRINTS():
return []


def MARA_AUTOMIGRATE_SQLALCHEMY_MODELS():
return []


def MARA_ACL_RESOURCES():
return {}


def MARA_CLICK_COMMANDS():
from . import cli
return [cli.download_data, cli.refresh_oauth2_token]


def MARA_NAVIGATION_ENTRIES():
return []

0 comments on commit 2115511

Please sign in to comment.