Skip to content

Commit aad87a6

Browse files
committed
style: error quoting
1 parent 1f53d0d commit aad87a6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

agent-control/src/config_migrate/migration/converter.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ use tracing::error;
1313

1414
#[derive(Error, Debug)]
1515
pub enum ConversionError {
16-
#[error("`{0}`")]
16+
#[error("{0}")]
1717
RepositoryError(#[from] AgentRepositoryError),
18-
#[error("`{0}`")]
18+
#[error("{0}")]
1919
ConvertFileError(#[from] FileReaderError),
20-
#[error("`{0}`")]
20+
#[error("{0}")]
2121
AgentValueError(#[from] AgentValueError),
22-
#[error("`{0}`")]
22+
#[error("{0}")]
2323
AgentTypeDefinitionError(#[from] AgentTypeDefinitionError),
2424
#[error("cannot find required file map: {0}")]
2525
RequiredFileMappingNotFoundError(String),
2626
#[error("cannot find required dir map: {0}")]
2727
RequiredDirMappingNotFoundError(String),
28-
#[error("deserializing YAML: `{0}`")]
28+
#[error("deserializing YAML: {0}")]
2929
InvalidYamlConfiguration(#[from] serde_yaml::Error),
30-
#[error("retrieving supported config value: `{0}`")]
30+
#[error("retrieving supported config value: {0}")]
3131
SupportedConfigValueError(#[from] SupportedConfigValueError),
3232
}
3333

0 commit comments

Comments
 (0)