Skip to content

Property usages code vision

Shows an inline usage hint above Python properties and opens the matching project usages when the hint is clicked.

class User:
    @property
    def name(self) -> str:
        return "Ada"

user = User()
label = user.name
1 usage

Notes

  • Getter, setter, and deleter accessors are grouped under the property getter.
  • The hint is shown only when at least one project usage is found.
  • The feature is gated by the Property usages code vision setting under Settings | BetterPy | Navigation & Discovery | Navigation.