fix: obfuscate regex to prevent css build error (fixes #54)

This commit is contained in:
sck_0
2026-02-03 19:38:04 +01:00
parent 84a41851e0
commit 1bc750e4a1

View File

@@ -186,7 +186,7 @@ class CompetitorAnalyzer:
def _analyze_title(self, title: str) -> Dict[str, Any]:
"""Analyze title structure and keyword usage."""
parts = re.split(r'[-:|]', title)
parts = re.split(r'[-' + r':|]', title)
return {
'title': title,