Skip to content

Commit 92e89f5

Browse files
committed
Clippy fix on additional change
1 parent be641e5 commit 92e89f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

temporalio/bridge/src/envconfig.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ fn load_client_config_inner(
100100
config_file_strict,
101101
};
102102
core_load_client_config(options, env_vars.as_ref())
103-
.map_err(|e| ConfigError::new_err(format!("{}", e)))?
103+
.map_err(|e| ConfigError::new_err(format!("{e}")))?
104104
};
105105

106106
core_config_to_dict(py, &core_config)
@@ -124,7 +124,7 @@ fn load_client_connect_config_inner(
124124
};
125125

126126
let profile = core_load_client_config_profile(options, env_vars.as_ref())
127-
.map_err(|e| ConfigError::new_err(format!("{}", e)))?;
127+
.map_err(|e| ConfigError::new_err(format!("{e}")))?;
128128

129129
profile_to_dict(py, &profile)
130130
}

0 commit comments

Comments
 (0)