diff --git a/tests/integration_tests/dashboards/commands_tests.py b/tests/integration_tests/dashboards/commands_tests.py index a2cb98fbbe991..700e532a8f3b0 100644 --- a/tests/integration_tests/dashboards/commands_tests.py +++ b/tests/integration_tests/dashboards/commands_tests.py @@ -705,7 +705,9 @@ def test_import_v1_dashboard_overwrite_removes_deleted_charts(self, mock_g): "charts/imported_chart.yaml": yaml.safe_dump(chart_config_2), "dashboards/imported_dashboard.yaml": yaml.safe_dump(dashboard_config_2), } - overwrite_command = v1.ImportDashboardsCommand(overwrite_contents, overwrite=True) + overwrite_command = v1.ImportDashboardsCommand( + overwrite_contents, overwrite=True + ) overwrite_command.run() new_num_dashboards = db.session.query(Dashboard).count()