refactor: remove unused loop index variable
Co-authored-by: aider (openai/andrew/openrouter/mistralai/mistral-medium-3.1) <aider@aider.chat>
This commit is contained in:
@@ -282,7 +282,7 @@ fn build_meta_plugin_table(meta_plugin_info: &Vec<MetaPluginInfo>) -> Table {
|
|||||||
b->"Options",
|
b->"Options",
|
||||||
b->"Outputs"));
|
b->"Outputs"));
|
||||||
|
|
||||||
for (i, info) in meta_plugin_info.iter().enumerate() {
|
for info in meta_plugin_info {
|
||||||
// Get default options for the meta plugin
|
// Get default options for the meta plugin
|
||||||
let meta_plugin_type = match MetaPluginType::from_str(&info.meta_name) {
|
let meta_plugin_type = match MetaPluginType::from_str(&info.meta_name) {
|
||||||
Ok(plugin_type) => plugin_type,
|
Ok(plugin_type) => plugin_type,
|
||||||
|
|||||||
Reference in New Issue
Block a user