make black happy

This commit is contained in:
Eshan Ramesh 2020-05-19 16:29:58 -04:00
parent 3375accf33
commit 7521960f1c

View file

@ -266,5 +266,5 @@ def split_title(text):
if not sep: if not sep:
sep = SENTENCE_SPLITTER.search(text) sep = SENTENCE_SPLITTER.search(text)
if not sep: if not sep:
return "",text return "", text
return text[: sep.end()].strip(), text[sep.end() :].strip() return text[: sep.end()].strip(), text[sep.end() :].strip()