(
self, permission_key: str, project: "Project"
)
| 59 | |
| 60 | @abstractmethod |
| 61 | def get_permitted_environments( |
| 62 | self, permission_key: str, project: "Project" |
| 63 | ) -> QuerySet["Environment"]: |
| 64 | raise NotImplementedError() |
| 65 | |
| 66 | @classmethod |
| 67 | def __subclasshook__(cls, subclass): # type: ignore[no-untyped-def] |