fix: resolve unresolved types and type mismatches in list and common modules

This commit is contained in:
Andrew Phillips (aider)
2025-05-10 13:54:53 -03:00
parent 0b82921506
commit ae67e67921
2 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ impl ColumnType {
/// Returns a Result with error message if the string is not a valid ColumnType
pub fn from_str(s: &str) -> anyhow::Result<Self> {
Self::try_from(s)
Ok(Self::try_from(s)?)
}
}