File size: 248 Bytes
e775b41
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from typing import Optional
# =========================
# Helpers
# =========================
def _combine(title: Optional[str], text: Optional[str]) -> str:
    title = title or ""
    text = text or ""
    return f"{title} {text}".strip().lower()