Skip to content

Commit

Permalink
chore: fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
luckydye committed Oct 19, 2024
1 parent f31cb90 commit 1754225
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/biome.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,7 @@ impl zed::Extension for BiomeExtension {
}

// install/update and run biome for extension
if let Err(err) = self.check_biome_updates(language_server_id) {
return Err(err);
}
self.check_biome_updates(language_server_id)?;

let mut server_path = PathBuf::from("./node_modules");
server_path.push(self.binary_specifier()?);
Expand Down

0 comments on commit 1754225

Please sign in to comment.