From 4098bbcdd4dc07ea414a601713766143a72087d0 Mon Sep 17 00:00:00 2001 From: Geoffrey Yu Date: Sun, 12 Nov 2023 18:36:28 -0500 Subject: [PATCH] Fix formatting --- src/brad/routing/router.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/brad/routing/router.py b/src/brad/routing/router.py index 15973eea..60e29623 100644 --- a/src/brad/routing/router.py +++ b/src/brad/routing/router.py @@ -100,9 +100,7 @@ async def engine_for( # Check if no engine supports query. if valid_locations == 0: - raise RuntimeError( - "No engine supports query '{}'".format(query.raw_query) - ) + raise RuntimeError("No engine supports query '{}'".format(query.raw_query)) # Check if only one engine supports query. if (valid_locations & (valid_locations - 1)) == 0: