mirror of
https://github.com/astral-sh/ruff
synced 2026-01-21 21:40:51 -05:00
## Summary We already had `CallableTypeKind::ClassMethodLike` to track callables that behave like `classmethods` (always bind the first argument). This PR adds the symmetric `CallableTypeKind::StaticMethodLike` for callables that behave like `staticmethods` (never bind `self`). Closes https://github.com/astral-sh/ty/issues/2114.