(cls, func_def: cst.FunctionDef)
| 367 | |
| 368 | @classmethod |
| 369 | def is_github_object_property(cls, func_def: cst.FunctionDef): |
| 370 | return cls.contains_decorator(func_def.decorators, "property") |
| 371 | |
| 372 | @staticmethod |
| 373 | def get_decorators(decorators: Sequence[cst.Decorator], decorator_name: str) -> list[dict[str, Any]]: |
no test coverage detected