Kinuax

Results 9 comments of Kinuax

I found myself with the same problem: self.searchqueryset.all() returns an empty list. In my case, this behaviour is related with the field type of text in the SearchIndex: text =...

With indexes.EdgeNgramField field type, self.searchqueryset.exclude(content='foo'), as proposed, returns the objects from the index. Thanks for commenting.

PR Review - [X] I read the [Review Pull Requests docs](https://typer.tiangolo.com/help-typer/#review-pull-requests). I checked the changes locally on Linux and all tests pass on 3.8..3.12. I reverted the bugfix, run all...

I added the tests to verify the cases with default (`None`, "", "Commands") and custom panel titles. All format, linting, and tests pass locally on 3.11. CI only breaks on...

As clarified at https://github.com/tiangolo/typer/pull/830, `click` still supports 3.7 so I have refactored to avoid assignment expressions and pass 3.7 tests. Tests are updated too to verify mixed commands in same...

@svlandeg, thanks for reviewing the PR and for sharing your thoughts. :+1: I understand the concern about avoiding breaking dependent libraries. Besides, I rechecked the `click` repo and I would...

@tiangolo, all right, I understand, thanks for clarifying.

Merge conflicts are solved and tests are passing. Ready to be reviewed.