micimize commented on issue #7934: Add a post-init extension point for 
blueprints, etc
URL: 
https://github.com/apache/incubator-superset/issues/7934#issuecomment-543989014
 
 
   I think the simplest way to implement this would be
   ```python
   # config.py
   def post_init(app):
       return app
   ```
   ```python
   # believe this will work in __init__.py
   post_init = conf.get("post_init")
   if post_init:
       app = post_init(app) or app
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to