From 134731ca5c67110ef4d69ffe5c5bd0e2bdebb1d6 Mon Sep 17 00:00:00 2001 From: "Andrew Phillips (aider)" Date: Sat, 10 May 2025 14:07:31 -0300 Subject: [PATCH] fix: add missing format_size and ColumnType imports --- src/modes/info.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modes/info.rs b/src/modes/info.rs index c0bc30a..ad4fda8 100644 --- a/src/modes/info.rs +++ b/src/modes/info.rs @@ -1,3 +1,4 @@ +use crate::modes::common::format_size; use anyhow::anyhow; use clap::error::ErrorKind; use clap::Command;