Skip to content

Commit

Permalink
style: apply flake8 convention
Browse files Browse the repository at this point in the history
  • Loading branch information
alimghmi committed Oct 23, 2023
1 parent ebe5c42 commit 5c2342a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scraper/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5c2342a

Please sign in to comment.