style: cargo fmt after Phase A
Whitespace + import-grouping fixups in the 9 SDK modules touched by F-Q-002. No behavior change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -81,8 +81,9 @@ pub(super) fn register(engine: &mut RhaiEngine, services: &Services, cx: Arc<Sdk
|
||||
let (cursor, limit) = parse_list_opts(&opts)?;
|
||||
let svc = svc.clone();
|
||||
let cx = cx.clone();
|
||||
let page: SecretsListPage =
|
||||
block_on("secrets", async move { svc.list(&cx, cursor.as_deref(), limit).await })?;
|
||||
let page: SecretsListPage = block_on("secrets", async move {
|
||||
svc.list(&cx, cursor.as_deref(), limit).await
|
||||
})?;
|
||||
Ok(list_page_to_map(page))
|
||||
},
|
||||
);
|
||||
@@ -130,4 +131,3 @@ fn list_page_to_map(page: SecretsListPage) -> Map {
|
||||
fn runtime_err(msg: &str) -> Box<EvalAltResult> {
|
||||
EvalAltResult::ErrorRuntime(msg.into(), rhai::Position::NONE).into()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user