From f3ad78aaafd10f61e276a3814ef822d9113e5895 Mon Sep 17 00:00:00 2001 From: Linden Haynes Date: Mon, 28 Aug 2023 23:03:15 -0500 Subject: [PATCH] precommit fixes --- tests/integration_tests/dashboards/commands_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()