We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 143ad44 commit 493e59cCopy full SHA for 493e59c
src/google/adk/cli/utils/agent_change_handler.py
@@ -38,7 +38,7 @@ def __init__(
38
self.current_app_name_ref = current_app_name_ref
39
40
def on_modified(self, event):
41
- if not (event.src_path.endswith(".py") or event.src_path.endswith(".yaml")):
+ if not event.src_path.endswith((".py", ".yaml", ".yml")):
42
return
43
logger.info("Change detected in agents directory: %s", event.src_path)
44
self.agent_loader.remove_agent_from_cache(self.current_app_name_ref.value)
0 commit comments