I'm using `pytest-cases`, and using `@fixture` without parenthesis, and it produces errors in `pyright`. ``` @fixture def some_fixture(): ... ``` ``` Argument of type "() -> str" cannot be assigned to parameter "scope" of type "str" in function "fixture" ``` There is `@overload` in typing to handle such cases https://mypy.readthedocs.io/en/stable/generics.html#decorator-factories Are you interested in adding support for type hinting? ### Progress: - [x] #23 - [x] #27 - [x] #30 - [ ] Typing for `class_decorator` and `decorator`