sbp commented on PR #1394:
URL:
https://github.com/apache/tooling-trusted-releases/pull/1394#issuecomment-4958397351
Ah, perhaps these ones were intended:
```
def _committee_keys_path(committee: sql.Committee) -> safe.StatePath:
downloads_dir = paths.get_downloads_dir()
if committee.is_podling:
return downloads_dir / "incubator" / committee.key / "KEYS"
return downloads_dir / committee.key / "KEYS"
def _committee_keys_url(host: str, committee: sql.Committee) -> str:
if committee.is_podling:
return f"https://{host}/downloads/incubator/{committee.key}/KEYS"
return f"https://{host}/downloads/{committee.key}/KEYS"
```
These two have no callers, and @alitheg added them in
8df94595a652155aca65dbb1ae38cc0fb91ca949. Okay to remove them, @alitheg?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]