Skip to content

Commit a669ec8

Browse files
committed
Fix format
1 parent 6ba3554 commit a669ec8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

crates/cli/src/docker_init.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,9 @@ pub fn handle_docker_init(config_path: String, output_dir: String) -> Result<()>
155155

156156
// depends_on
157157
let mut module_dependencies = IndexMap::new();
158-
module_dependencies.insert(
159-
"cb_signer".into(),
160-
DependsCondition { condition: "service_healthy".into() },
161-
);
158+
module_dependencies.insert("cb_signer".into(), DependsCondition {
159+
condition: "service_healthy".into(),
160+
});
162161

163162
Service {
164163
container_name: Some(module_cid.clone()),

0 commit comments

Comments
 (0)