From efc827b2748356ebb973adbe888638b6ff1e3d16 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 14 Feb 2023 09:55:34 +0100 Subject: [PATCH] [statemachine] cleanup --- codex/utils/asyncstatemachine.nim | 2 -- 1 file changed, 2 deletions(-) diff --git a/codex/utils/asyncstatemachine.nim b/codex/utils/asyncstatemachine.nim index b3d2761a..ec82b9c0 100644 --- a/codex/utils/asyncstatemachine.nim +++ b/codex/utils/asyncstatemachine.nim @@ -2,8 +2,6 @@ import pkg/questionable import pkg/chronos import pkg/upraises -# template makeStateMachine*(Machine, State) = - type Machine* = ref object of RootObj state: State