Skip to content

Commit

Permalink
Fluent style that is not the outermost expression
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Aug 3, 2023
1 parent ffc07a9 commit aad9a5c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,11 @@ g1 = (
queryset.distinct().order_by(field.name).values_list(field_name_flat_long_long=True)
)
# TODO(konstin): We currently can't do call chains that is not the outermost expression
# Fluent style that is not the outermost expression
if (
not a().b().cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc()
not a()
.b()
.cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc()
):
pass
```
Expand Down

0 comments on commit aad9a5c

Please sign in to comment.