chore: remove directory importexport (#11531)

This commit is contained in:
Beto Dealmeida 2020-11-03 17:10:52 -08:00 committed by GitHub
parent 15111db6c5
commit 1ebeffa104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ from werkzeug.utils import secure_filename
from superset.charts.commands.exceptions import ChartNotFoundError from superset.charts.commands.exceptions import ChartNotFoundError
from superset.charts.dao import ChartDAO from superset.charts.dao import ChartDAO
from superset.datasets.commands.export import ExportDatasetsCommand from superset.datasets.commands.export import ExportDatasetsCommand
from superset.importexport.commands.base import ExportModelsCommand from superset.commands.export import ExportModelsCommand
from superset.models.slice import Slice from superset.models.slice import Slice
from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION

View File

@ -26,7 +26,7 @@ from werkzeug.utils import secure_filename
from superset.charts.commands.export import ExportChartsCommand from superset.charts.commands.export import ExportChartsCommand
from superset.dashboards.commands.exceptions import DashboardNotFoundError from superset.dashboards.commands.exceptions import DashboardNotFoundError
from superset.dashboards.dao import DashboardDAO from superset.dashboards.dao import DashboardDAO
from superset.importexport.commands.base import ExportModelsCommand from superset.commands.export import ExportModelsCommand
from superset.models.dashboard import Dashboard from superset.models.dashboard import Dashboard
from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION

View File

@ -25,7 +25,7 @@ from werkzeug.utils import secure_filename
from superset.databases.commands.exceptions import DatabaseNotFoundError from superset.databases.commands.exceptions import DatabaseNotFoundError
from superset.databases.dao import DatabaseDAO from superset.databases.dao import DatabaseDAO
from superset.importexport.commands.base import ExportModelsCommand from superset.commands.export import ExportModelsCommand
from superset.models.core import Database from superset.models.core import Database
from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION

View File

@ -23,10 +23,10 @@ from typing import Iterator, Tuple
import yaml import yaml
from werkzeug.utils import secure_filename from werkzeug.utils import secure_filename
from superset.commands.export import ExportModelsCommand
from superset.connectors.sqla.models import SqlaTable from superset.connectors.sqla.models import SqlaTable
from superset.datasets.commands.exceptions import DatasetNotFoundError from superset.datasets.commands.exceptions import DatasetNotFoundError
from superset.datasets.dao import DatasetDAO from superset.datasets.dao import DatasetDAO
from superset.importexport.commands.base import ExportModelsCommand
from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

View File

@ -23,7 +23,7 @@ from typing import Iterator, Tuple
import yaml import yaml
from werkzeug.utils import secure_filename from werkzeug.utils import secure_filename
from superset.importexport.commands.base import ExportModelsCommand from superset.commands.export import ExportModelsCommand
from superset.models.sql_lab import SavedQuery from superset.models.sql_lab import SavedQuery
from superset.queries.saved_queries.commands.exceptions import SavedQueryNotFoundError from superset.queries.saved_queries.commands.exceptions import SavedQueryNotFoundError
from superset.queries.saved_queries.dao import SavedQueryDAO from superset.queries.saved_queries.dao import SavedQueryDAO