style: apply cargo fmt to schema migration code

This commit is contained in:
Jason
2026-04-10 11:23:08 +08:00
parent b85e449949
commit 489c7c75ea
+1 -3
View File
@@ -1136,9 +1136,7 @@ impl Database {
WHERE model_id = ?1",
rusqlite::params![model_id, input, output, cache_read, cache_creation],
)
.map_err(|e| {
AppError::Database(format!("更新模型 {model_id} 定价失败: {e}"))
})?;
.map_err(|e| AppError::Database(format!("更新模型 {model_id} 定价失败: {e}")))?;
}
}