Added Keyboard.py + started find test method

This commit is contained in:
2025-11-22 20:40:33 +01:00
parent 4199427c71
commit 97247f824c
13 changed files with 1205 additions and 27 deletions

View File

@@ -39,7 +39,7 @@ class BaseCommand:
return {
"hx-post": f"{ROUTE_ROOT}{Routes.Commands}",
"hx-swap": "outerHTML",
"hx-vals": f'{{"c_id": "{self.id}"}}',
"hx-vals": {"c_id": f"{self.id}"},
} | self._htmx_extra
def execute(self, client_response: dict = None):