We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be641e5 commit 92e89f5Copy full SHA for 92e89f5
temporalio/bridge/src/envconfig.rs
@@ -100,7 +100,7 @@ fn load_client_config_inner(
100
config_file_strict,
101
};
102
core_load_client_config(options, env_vars.as_ref())
103
- .map_err(|e| ConfigError::new_err(format!("{}", e)))?
+ .map_err(|e| ConfigError::new_err(format!("{e}")))?
104
105
106
core_config_to_dict(py, &core_config)
@@ -124,7 +124,7 @@ fn load_client_connect_config_inner(
124
125
126
let profile = core_load_client_config_profile(options, env_vars.as_ref())
127
- .map_err(|e| ConfigError::new_err(format!("{}", e)))?;
+ .map_err(|e| ConfigError::new_err(format!("{e}")))?;
128
129
profile_to_dict(py, &profile)
130
}
0 commit comments