chore: enable ruff's isort equivalent (#28267)

This commit is contained in:
Maxime Beauchemin
2024-04-30 18:29:49 -07:00
committed by GitHub
parent fe37d914e5
commit 3ac387bb66
22 changed files with 85 additions and 24 deletions

View File

@@ -26,7 +26,9 @@ from superset.reports.models import (
ReportRecipientType,
ReportScheduleType,
)
from tests.integration_tests.fixtures.tabbed_dashboard import tabbed_dashboard # noqa: F401
from tests.integration_tests.fixtures.tabbed_dashboard import (
tabbed_dashboard, # noqa: F401
)
DASHBOARD_REPORT_SCHEDULE_DEFAULTS = {
"type": ReportScheduleType.REPORT,

View File

@@ -24,7 +24,9 @@ from superset.commands.dashboard.permalink.create import CreateDashboardPermalin
from superset.commands.report.execute import AsyncExecuteReportScheduleCommand
from superset.models.dashboard import Dashboard
from superset.reports.models import ReportSourceFormat
from tests.integration_tests.fixtures.tabbed_dashboard import tabbed_dashboard # noqa: F401
from tests.integration_tests.fixtures.tabbed_dashboard import (
tabbed_dashboard, # noqa: F401
)
from tests.integration_tests.reports.utils import create_dashboard_report