def __call__(self, app=None, **kwargs):
"""
???Manager????Options will be ignored.???
???flask-script?Manager??app??????????
???????
"""
if app is None:
app = self.app
if app is None:
raise Exception("There is no app here. This is unlikely to work.")
if isinstance(app, Flask):
return app
app = app(**kwargs)
self.app = app
return app
评论列表
文章目录