In `.pyi` files, everything is stubbed out like: ``` def foo() -> int: ... class MyClass: ... ``` This is how black formats them, but ruff is upset with them. Example here: https://github.com/pyca/cryptography/actions/runs/4158646856/jobs/7194009425 Thanks