Skip to content

Commit 1e012c1

Browse files
committed
chore: fix lint errors
1 parent 08806a0 commit 1e012c1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const NO_REASON: &str = "No reason";
3434
/// A CloudFormation CLI that won't make you cry.
3535
///
3636
/// All commands will look for AWS configuration in the usual places. See AWS CLI documentation for
37-
/// more information: https://docs.aws.amazon.com/cli/latest/topic/config-vars.html
37+
/// more information: <https://docs.aws.amazon.com/cli/latest/topic/config-vars.html>
3838
///
3939
/// Use `cloudformatious <command> --help` to get more information about individual commands.
4040
#[derive(Clap, Debug)]
@@ -596,8 +596,8 @@ impl Default for Sizing {
596596
async fn print_events(sizing: &Sizing, mut events: impl Stream<Item = StackEvent> + Unpin) {
597597
while let Some(event) = events.next().await {
598598
eprintln!(
599-
"{} {:resource_status_size$} {:logical_resource_id_size$} {:resource_type_size$} {}",
600-
format!("{:?}", event.timestamp()),
599+
"{:?} {:resource_status_size$} {:logical_resource_id_size$} {:resource_type_size$} {}",
600+
event.timestamp(),
601601
colorize_status(&event),
602602
event.logical_resource_id(),
603603
event.resource_type(),

0 commit comments

Comments
 (0)