File size: 317 Bytes
aad7814
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""Emit frontend highConfidence[] from backend lexicon."""
from __future__ import annotations

from backend.core.notes_high_confidence_lexicon import HIGH_CONFIDENCE_LEXICON

print("  const highConfidence = [")
for sid, pat in HIGH_CONFIDENCE_LEXICON:
    print(f"    {{ code:'{sid}', rx:/{pat}/i }},")
print("  ];")