fix: remove unused imports and make unused fields private

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-16 12:21:57 -03:00
parent 8b8868760c
commit 969d30924b
3 changed files with 4 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
use std::path::PathBuf;
use std::str::FromStr;
use clap::*;
use anyhow::{Error, anyhow};
@@ -174,8 +173,8 @@ impl FromStr for NumberOrString {
*/
#[derive(Debug, Clone)]
pub struct KeyValue {
pub key: String,
pub value: String,
pub(crate) key: String,
pub(crate) value: String,
}
impl FromStr for KeyValue {