From e9a77cac72168d4aa791e454885c5315dca09c3a Mon Sep 17 00:00:00 2001 From: valrus Date: Sun, 29 Dec 2024 08:08:54 -0800 Subject: [PATCH] format --- beets/dbcore/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/dbcore/query.py b/beets/dbcore/query.py index 0dbd241f7..5af1cc417 100644 --- a/beets/dbcore/query.py +++ b/beets/dbcore/query.py @@ -1006,7 +1006,7 @@ class FieldSort(Sort): field_val = obj._types[self.field].null # If not, or the null value is None, fall back to using an empty string. if field_val is None: - field_val = '' + field_val = "" if self.case_insensitive and isinstance(field_val, str): field_val = field_val.lower() return field_val