Skip to content

Commit

Permalink
removed undeeded return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
brqnko committed May 4, 2024
1 parent 3912129 commit 3900c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/youtube.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ impl YouTube {
.map(|x| x.to_string())
.collect();

return Ok(suggestion);
Ok(suggestion)
}

async fn innertube_key(&self) -> String {
Expand Down

0 comments on commit 3900c3d

Please sign in to comment.