Skip to content

Commit

Permalink
update to use refactored agent responses
Browse files Browse the repository at this point in the history
  • Loading branch information
jl-animo committed Mar 14, 2022
1 parent e89ef43 commit 1a7d6cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/modules/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub async fn parse_configuration_args(options: &ConfigurationOptions) -> Result<

view(&config_path).map_err(|err| {
debug!("Failed to read config file: {}", err);
return error::Error::CannotReadConfigurationFile.into();
error::Error::CannotReadConfigurationFile.into()
})
}
}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/modules/connections.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub async fn parse_connection_args(
format!(
"{} invite with connection id: {}\n",
"Created".green(),
response.0.bold(),
response.connection_id,
)
);
if *qr {
Expand Down

0 comments on commit 1a7d6cb

Please sign in to comment.