mirror of
https://github.com/apache/superset.git
synced 2026-08-12 11:11:01 +00:00
16 lines
395 B
Python
Executable File
16 lines
395 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import warnings
|
|
from flask.exthook import ExtDeprecationWarning
|
|
warnings.simplefilter('ignore', ExtDeprecationWarning)
|
|
|
|
from superset.cli import manager
|
|
|
|
if __name__ == "__main__":
|
|
manager.run()
|