Skip to content

Commit

Permalink
chore: remove directory importexport (apache#11531)
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida authored and auxten committed Nov 20, 2020
1 parent 803a487 commit 0c34078
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion superset/charts/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from superset.charts.commands.exceptions import ChartNotFoundError
from superset.charts.dao import ChartDAO
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.utils.dict_import_export import IMPORT_EXPORT_VERSION

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion superset/dashboards/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from superset.charts.commands.export import ExportChartsCommand
from superset.dashboards.commands.exceptions import DashboardNotFoundError
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.utils.dict_import_export import IMPORT_EXPORT_VERSION

Expand Down
2 changes: 1 addition & 1 deletion superset/databases/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

from superset.databases.commands.exceptions import DatabaseNotFoundError
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.utils.dict_import_export import IMPORT_EXPORT_VERSION

Expand Down
2 changes: 1 addition & 1 deletion superset/datasets/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
import yaml
from werkzeug.utils import secure_filename

from superset.commands.export import ExportModelsCommand
from superset.connectors.sqla.models import SqlaTable
from superset.datasets.commands.exceptions import DatasetNotFoundError
from superset.datasets.dao import DatasetDAO
from superset.importexport.commands.base import ExportModelsCommand
from superset.utils.dict_import_export import IMPORT_EXPORT_VERSION

logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion superset/queries/saved_queries/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import yaml
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.queries.saved_queries.commands.exceptions import SavedQueryNotFoundError
from superset.queries.saved_queries.dao import SavedQueryDAO
Expand Down

0 comments on commit 0c34078

Please sign in to comment.