Skip to content

Commit ed89a30

Browse files
committed
fmt
1 parent 0600dde commit ed89a30

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/expiring-tags.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,10 @@ async fn info_task(blobs: BlobsClient) -> anyhow::Result<()> {
9797
loop {
9898
let now = chrono::Utc::now();
9999
let mut tags = blobs.tags().list().await?;
100-
println!("Current time: {}", now.to_rfc3339_opts(chrono::SecondsFormat::Secs, true));
100+
println!(
101+
"Current time: {}",
102+
now.to_rfc3339_opts(chrono::SecondsFormat::Secs, true)
103+
);
101104
println!("Tags:");
102105
while let Some(tag) = tags.next().await {
103106
let tag = tag?;

0 commit comments

Comments
 (0)