Skip to content

Commit

Permalink
Fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Aug 1, 2023
1 parent fab2a0e commit b7f4557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/wasix/src/state/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -950,14 +950,14 @@ impl WasiEnv {
let specifier = package_name.parse::<PackageSpecifier>().map_err(|e| {
WasiStateCreationError::WasiIncludePackageError(format!(
"package_name={package_name}, {}",
e.to_string()
e
))
})?;
let pkg = InlineWaker::block_on(BinaryPackage::from_registry(&specifier, rt)).map_err(
|e| {
WasiStateCreationError::WasiIncludePackageError(format!(
"package_name={package_name}, {}",
e.to_string()
e
))
},
)?;
Expand Down

0 comments on commit b7f4557

Please sign in to comment.