(payload: dict)
| 135 | |
| 136 | |
| 137 | async def _format_public(payload: dict) -> str: |
| 138 | repo = payload['repository'] |
| 139 | return "\u2192 <a href=\"{url}\">{name}</a>".format( |
| 140 | url=repo['html_url'], |
| 141 | name=repo['full_name'] |
| 142 | ) |
| 143 | |
| 144 | |
| 145 | async def _format_pull_request(payload: dict) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected