This is an automated email from the ASF dual-hosted git repository. hugh pushed a commit to branch test-ssh-tunnel-1 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 28425eb2b14abdf2bf8869b21ba56be945dd4776 Author: Antonio Rivero <[email protected]> AuthorDate: Mon Nov 28 10:19:02 2022 -0300 SSH Tunnel: - FIx linting errors --- superset/databases/api.py | 1 - superset/databases/commands/create.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/superset/databases/api.py b/superset/databases/api.py index 9cab40ede4..92b9635fd8 100644 --- a/superset/databases/api.py +++ b/superset/databases/api.py @@ -72,7 +72,6 @@ from superset.databases.schemas import ( ValidateSQLRequest, ValidateSQLResponse, ) -from superset.databases.ssh_tunnel.commands.create import CreateSSHTunnelCommand from superset.databases.ssh_tunnel.commands.delete import DeleteSSHTunnelCommand from superset.databases.ssh_tunnel.commands.exceptions import ( SSHTunnelDeleteFailedError, diff --git a/superset/databases/commands/create.py b/superset/databases/commands/create.py index 421e060a4b..ad8fa3a450 100644 --- a/superset/databases/commands/create.py +++ b/superset/databases/commands/create.py @@ -31,9 +31,7 @@ from superset.databases.commands.exceptions import ( ) from superset.databases.commands.test_connection import TestConnectionDatabaseCommand from superset.databases.dao import DatabaseDAO -from superset.databases.ssh_tunnel.commands.exceptions import SSHTunnelInvalidError from superset.databases.ssh_tunnel.dao import SSHTunnelDAO -from superset.databases.ssh_tunnel.models import SSHTunnel from superset.exceptions import SupersetErrorsException from superset.extensions import db, event_logger, security_manager
