From 5c2342a4c683c9e45bfe3f6d1e20fd912a8b16b9 Mon Sep 17 00:00:00 2001 From: Ali Moghimi Date: Mon, 23 Oct 2023 11:39:42 +0000 Subject: [PATCH] style: apply flake8 convention --- scraper/engine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scraper/engine.py b/scraper/engine.py index bcef3d0..8155fbb 100644 --- a/scraper/engine.py +++ b/scraper/engine.py @@ -15,11 +15,11 @@ def fetch(self, content: str = None) -> pd.DataFrame: if not content: content = self.get_content() logger.debug( - f"Successfully fetched content from {self.url}. Now parsing the content." + f"Successfully fetched content from {self.url}. Now parsing the content." # noqa: E501 ) else: logger.debug( - f"Successfully loaded the content from the user provided argument. Now parsing the content." + "Successfully loaded the content from the user provided argument. Now parsing the content." # noqa: E501 ) df = self.parse_html(content)