Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Aug 16, 2024
1 parent e1873c8 commit 72862b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bindings/runner/src/common.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std::collections::HashMap;
use crate::context::HolochainAgentContext;
use crate::runner_context::HolochainRunnerContext;
use anyhow::Context;
Expand All @@ -11,6 +10,7 @@ use holochain_types::prelude::{
AppBundleSource, CellId, ExternIO, InstallAppPayload, InstalledAppId, RoleName,
};
use holochain_types::websocket::AllowedOrigins;
use std::collections::HashMap;
use std::path::PathBuf;
use wind_tunnel_runner::prelude::{
AgentContext, HookResult, RunnerContext, UserValuesConstraint, WindTunnelResult,
Expand Down
9 changes: 8 additions & 1 deletion bindings/trycp_client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,14 @@ mod admin_impl {
timeout: Option<Duration>,
) -> io::Result<()> {
let response = self
.call_admin(id, AdminRequest::UninstallApp { installed_app_id, force }, timeout)
.call_admin(
id,
AdminRequest::UninstallApp {
installed_app_id,
force,
},
timeout,
)
.await?;

match response {
Expand Down

0 comments on commit 72862b4

Please sign in to comment.