diff --git a/frappe/tests/test_fixture_import.py b/frappe/tests/test_fixture_import.py index c9467b5de2..2fe7e40d0d 100644 --- a/frappe/tests/test_fixture_import.py +++ b/frappe/tests/test_fixture_import.py @@ -64,11 +64,10 @@ class TestFixtureImport(unittest.TestCase): singles_doctype = frappe.qb.DocType("Singles") truncate_query = ( - frappe.qb.from_(singles_doctype) - .delete() - .where( - singles_doctype.doctype == "temp_singles") - ) + frappe.qb.from_(singles_doctype) + .delete() + .where(singles_doctype.doctype == "temp_singles") + ) truncate_query.run() import_doc(path_to_exported_fixtures)