(
self, project: str, tags: Optional[dict[str, str]], **kwargs
)
| 1694 | ) |
| 1695 | |
| 1696 | def _list_permissions( |
| 1697 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
| 1698 | ) -> List[Permission]: |
| 1699 | return self._list_objects( |
| 1700 | permissions, |
| 1701 | project, |
| 1702 | PermissionProto, |
| 1703 | Permission, |
| 1704 | "permission_proto", |
| 1705 | tags=tags, |
| 1706 | **kwargs, |
| 1707 | ) |
| 1708 | |
| 1709 | def apply_permission( |
| 1710 | self, permission: Permission, project: str, commit: bool = True |
nothing calls this directly
no test coverage detected