Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
Signed-off-by: Michael X. Grey <mxgrey@intrinsic.ai>
  • Loading branch information
mxgrey committed Jun 6, 2024
1 parent beb0fb2 commit 044c691
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion rmf_site_editor/src/site/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,10 @@ pub fn update_model_tentative_formats(
_ => "Failed parsing file".to_owned(),
}
};
warn!("Failed loading Model with source {}: {}", asset_path, reason);
warn!(
"Failed loading Model with source {}: {}",
asset_path, reason
);
cmd.remove::<TentativeModelFormat>();
}
}
Expand Down
2 changes: 1 addition & 1 deletion rmf_site_format/src/asset_source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
use crate::*;
#[cfg(feature = "bevy")]
use bevy::{
prelude::{Component, Reflect, ReflectComponent},
asset::{AssetPath, ParseAssetPathError},
prelude::{Component, Reflect, ReflectComponent},
};
use pathdiff::diff_paths;
use serde::{Deserialize, Serialize};
Expand Down

0 comments on commit 044c691

Please sign in to comment.