From b8d51e2fa2dbd392fa005b24773f3bc7e41ce2bc Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 27 Aug 2025 21:05:24 -0300 Subject: [PATCH] fix: add missing closing brace for is_supported method Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/meta_plugin/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meta_plugin/mod.rs b/src/meta_plugin/mod.rs index ecc5aa5..92f10d3 100644 --- a/src/meta_plugin/mod.rs +++ b/src/meta_plugin/mod.rs @@ -194,6 +194,7 @@ pub trait MetaPlugin where Self: 'static { fn is_supported(&self) -> bool { true + } fn is_internal(&self) -> bool { true