Skip to content

Commit

Permalink
838 remove unneeded return
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Druzhitskiy committed Jan 18, 2024
1 parent 06d9c60 commit 7bce026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bob-backend/src/pearl/group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ impl Group {
}
}
}
return Err(Error::pearl_change_state(format!("pearl:{} not found", id)));
Err(Error::pearl_change_state(format!("pearl:{} not found", id)))
}

pub async fn detach_all(&self) -> BackendResult<()> {
Expand Down

0 comments on commit 7bce026

Please sign in to comment.