flake8
passed.
JSHint
passed.
Review Request #12357 — Created June 10, 2022 and submitted
When calling
MyModel.objects.filter(Q(...)), an extra wrapperQ()
sometimes gets generated, resulting in an expression like
Q(Q(field=value)). This is annoying to work with in tests, and feels
wrong.To avoid this, we now post-process just a bit. If the
Q()object
contains only one child, and that child is anotherQ()object, we just
extract the inner one.
Tested with unit tests that were triggering this behavior.
| Summary | ID |
|---|---|
| 548a41994127d8d4b28b3235e03d0693f2502ac9 |