Skip to content

Commit

Permalink
chore: fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 18, 2023
1 parent 5025eed commit 4dd7662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interface/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ impl<Seal: ExposedSeal> OperationBuilder<Seal> {
Some(asset_tag) => *asset_tag,
None => {
let asset_tag = AssetTag::new_random(
&format!("{}/{}", self.schema.schema_id(), self.iface.iface_id()),
format!("{}/{}", self.schema.schema_id(), self.iface.iface_id()),
type_id,
);
self.asset_tags.insert(type_id, asset_tag)?;
Expand Down

0 comments on commit 4dd7662

Please sign in to comment.