summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErin Power <xampprocky@gmail.com>2020-05-22 02:32:06 +0200
committerErin Power <xampprocky@gmail.com>2020-05-22 02:32:06 +0200
commitf0099b436020c82471de3696b034c6a3e3091991 (patch)
treed8147ffc90ccd14a758c23f60c537ef7170c1551
parent44fd48feae2f95b4b7cd281b8a605b5ae1486ea1 (diff)
fmt
-rw-r--r--src/api/actions.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/api/actions.rs b/src/api/actions.rs
index 848738a..9839647 100644
--- a/src/api/actions.rs
+++ b/src/api/actions.rs
@@ -233,7 +233,10 @@ impl<'octo> ActionsHandler<'octo> {
/// # Ok(())
/// # }
/// ```
- pub async fn get_org_public_key(&self, org: impl AsRef<str>) -> crate::Result<crate::models::PublicKey> {
+ pub async fn get_org_public_key(
+ &self,
+ org: impl AsRef<str>,
+ ) -> crate::Result<crate::models::PublicKey> {
let route = format!("/orgs/{org}/actions/secrets/public-key", org = org.as_ref());
self.crab.get(route, None::<&()>).await