Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
aterga committed Jan 31, 2025
1 parent 238d139 commit 6224e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/nervous_system/agent/src/pocketic_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl PocketIcAgent<'_> {
&self,
canister_id: Principal,
) -> Result<RawEffectivePrincipal, PocketIcCallError> {
let Some(subnet_id) = self.pocket_ic.get_subnet(canister_id.into()).await else {
let Some(subnet_id) = self.pocket_ic.get_subnet(canister_id).await else {
return Err(PocketIcCallError::CanisterSubnetNotFound(canister_id));
};

Expand Down

0 comments on commit 6224e87

Please sign in to comment.