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 ( or (
strict strict
and all( and all(
substring in entry.title.casefold() substring in entry.title.casefold()
or substring in entry.body.casefold() or substring in entry.body.casefold()
for substring in contains_lower for substring in contains_lower
) )
) )
or ( or (
not strict not strict
and any( and any(
substring in entry.title.casefold() substring in entry.title.casefold()
or substring in entry.body.casefold() or substring in entry.body.casefold()
for substring in contains_lower for substring in contains_lower
) )