Skip to content

Commit

Permalink
Resolve double quotes string linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedawnallah committed Dec 27, 2023
1 parent 925c3af commit ec56026
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions create_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ def __init__(self, message):
crawler.close()
if not relations_count_new > relations_count:
error_message = (
f"Unexpected relation count change in the crawler '{name}': "
f"Expected new relations ({relations_count_new}) "
f"to be greater than the previous relations ({relations_count})."
f'Unexpected relation count change in the crawler "{name}": '
f'Expected new relations ({relations_count_new}) '
f'to be greater than the previous relations ({relations_count}).'
)
raise RelationCountError(error_message)
status[module_name] = 'OK'
Expand Down

0 comments on commit ec56026

Please sign in to comment.