Run poe format

This commit is contained in:
Micah Jerome Ellison 2024-05-10 07:19:18 -07:00
parent 044bc64f0b
commit 989f504180

View file

@ -300,15 +300,15 @@ class Journal:
or (
strict
and all(
substring in entry.title.casefold()
substring in entry.title.casefold()
or substring in entry.body.casefold()
for substring in contains_lower
)
)
or (
not strict
not strict
and any(
substring in entry.title.casefold()
substring in entry.title.casefold()
or substring in entry.body.casefold()
for substring in contains_lower
)