From 796aebae3f61d63b15c448959b83be86424ea45a Mon Sep 17 00:00:00 2001 From: Geoffrey R Plymale <106821302+badMade@users.noreply.github.com> Date: Wed, 15 Apr 2026 21:40:10 -0400 Subject: [PATCH] Remove unused cwd parameter from get_commands --- src/commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands.py b/src/commands.py index b00110287c..350ea8cd12 100644 --- a/src/commands.py +++ b/src/commands.py @@ -66,7 +66,6 @@ def get_command(name: str) -> PortingModule | None: def get_commands( - cwd: str | None = None, include_plugin_commands: bool = True, include_skill_commands: bool = True, ) -> tuple[PortingModule, ...]: