fix: add missing FromStr import to fix enum parsing

This commit is contained in:
Andrew Phillips (aider)
2025-05-10 09:16:36 -03:00
parent 3351245eb4
commit cd0387c788

View File

@@ -1,5 +1,6 @@
use anyhow::Result; use anyhow::Result;
use std::path::PathBuf; use std::path::PathBuf;
use std::str::FromStr;
use crate::db; use crate::db;
use clap::Command; use clap::Command;