Skip to content

Commit 6f11cdf

Browse files
committed
Fix black warning (alerts in 22.3.0 used by GHA, not in 24.10.0)
1 parent db0f571 commit 6f11cdf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

queryset_sequence/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,9 @@ def values_list(self, *fields, flat=False, named=False):
850850
clone._iterable_class = (
851851
NamedValuesListIterable
852852
if named
853-
else FlatValuesListIterable if flat else ValuesListIterable
853+
else FlatValuesListIterable
854+
if flat
855+
else ValuesListIterable
854856
)
855857

856858
return clone

0 commit comments

Comments
 (0)