Remove redundant format!()

This commit is contained in:
notgne2 2021-02-10 20:28:14 -07:00
parent da25b20674
commit 15864f9826
No known key found for this signature in database
GPG Key ID: BB661E172B42A7F8

View File

@ -208,7 +208,7 @@ async fn get_deployment_data(
}
(None, None) => {
// We need to evaluate all profiles of all nodes anyway, so just do it strictly
c.arg(format!("deploy: deploy"))
c.arg("deploy: deploy")
}
(None, Some(_)) => return Err(GetDeploymentDataError::ProfileNoNode),
}