Skip to content

Commit

Permalink
make formatting happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Dec 13, 2023
1 parent 9e5ed68 commit d34f255
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rust/agama-lib/src/software/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ impl<'a> SoftwareClient<'a> {
/// Selects patterns by user
pub async fn select_patterns(&self, patterns: &[String]) -> Result<(), ServiceError> {
let patterns: Vec<&str> = patterns.iter().map(AsRef::as_ref).collect();
let wrong_patterns = self.software_proxy
let wrong_patterns = self
.software_proxy
.set_user_patterns(patterns.as_slice())
.await?;
if !wrong_patterns.is_empty() {
Expand Down

0 comments on commit d34f255

Please sign in to comment.