From ad1a7e44bc87d6928701b3ff900e9c735114f570 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Sat, 16 Aug 2025 12:22:25 -0300 Subject: [PATCH] fix: add missing FromStr trait import Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- src/args.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/args.rs b/src/args.rs index b5e8cc0..00132fb 100644 --- a/src/args.rs +++ b/src/args.rs @@ -1,4 +1,5 @@ use std::path::PathBuf; +use std::str::FromStr; use clap::*; use anyhow::{Error, anyhow};