From 7521960f1c86d7564423ee06826de193717aa5b0 Mon Sep 17 00:00:00 2001 From: Eshan Ramesh Date: Tue, 19 May 2020 16:29:58 -0400 Subject: [PATCH] make black happy --- jrnl/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/util.py b/jrnl/util.py index ba46c3da..945710e9 100644 --- a/jrnl/util.py +++ b/jrnl/util.py @@ -266,5 +266,5 @@ def split_title(text): if not sep: sep = SENTENCE_SPLITTER.search(text) if not sep: - return "",text + return "", text return text[: sep.end()].strip(), text[sep.end() :].strip()