Skip to content

Commit

Permalink
Fix black warning (alerts in 22.3.0 used by GHA, not in 24.10.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
optiz0r committed Oct 19, 2024
1 parent db0f571 commit 6f11cdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion queryset_sequence/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,9 @@ def values_list(self, *fields, flat=False, named=False):
clone._iterable_class = (
NamedValuesListIterable
if named
else FlatValuesListIterable if flat else ValuesListIterable
else FlatValuesListIterable
if flat
else ValuesListIterable
)

return clone
Expand Down

0 comments on commit 6f11cdf

Please sign in to comment.