Code - Remove unused f-strings (#3209)

This commit is contained in:
Jost Alemann
2025-05-22 10:11:39 +00:00
committed by GitHub
parent fcd6ebe0ee
commit 9b7372fff0
7 changed files with 9 additions and 9 deletions

View File

@@ -15,7 +15,7 @@ def _task(watch, update_handler):
except FilterNotFoundInResponse as e:
text_after_filter = f"Filter not found in HTML: {str(e)}"
except ReplyWithContentButNoText as e:
text_after_filter = f"Filter found but no text (empty result)"
text_after_filter = "Filter found but no text (empty result)"
except Exception as e:
text_after_filter = f"Error: {str(e)}"