File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
agent-control/src/config_migrate/migration Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,21 +13,21 @@ use tracing::error;
1313
1414#[ derive( Error , Debug ) ]
1515pub 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
You can’t perform that action at this time.
0 commit comments