From 795410047ef20ebb39503c09a5359e53475f2274 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Tue, 3 Mar 2026 17:51:21 +0100 Subject: [PATCH] feat(types.py): add `ActionType` type --- src/judas_protocol/types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/judas_protocol/types.py b/src/judas_protocol/types.py index 9b353dc..9dd6f03 100644 --- a/src/judas_protocol/types.py +++ b/src/judas_protocol/types.py @@ -5,6 +5,8 @@ from __future__ import annotations from enum import Enum +type ActionType = ControlAction + class Category(str, Enum): CONTROL = "control"