From 7759d1704e39b3a30fe1c04e880ee9b2a3e422e0 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Tue, 7 Feb 2023 00:31:39 +0000 Subject: [PATCH] Format Python code with psf/black push --- models/search_model.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/models/search_model.py b/models/search_model.py index 28ae2f7..25c5708 100644 --- a/models/search_model.py +++ b/models/search_model.py @@ -118,7 +118,9 @@ class Search: # Get the links for the query print("The refined search is " + query_refined_text) - links, all_links = await self.get_links(query_refined_text, search_scope=search_scope) + links, all_links = await self.get_links( + query_refined_text, search_scope=search_scope + ) if all_links is None: raise ValueError("The Google Search API returned an error.")