(seq: Sequence[cst.Decorator], decorator_name: str)
| 363 | class CstMethods(abc.ABC): |
| 364 | @staticmethod |
| 365 | def contains_decorator(seq: Sequence[cst.Decorator], decorator_name: str): |
| 366 | return any(d.decorator.value == decorator_name for d in seq if isinstance(d.decorator, cst.Name)) |
| 367 | |
| 368 | @classmethod |
| 369 | def is_github_object_property(cls, func_def: cst.FunctionDef): |
no outgoing calls
no test coverage detected