From 3549002ec237e3d06335988a6ed01d79dc0f20e0 Mon Sep 17 00:00:00 2001 From: Janik Besendorf Date: Sat, 6 Jun 2026 17:27:44 +0200 Subject: [PATCH] Annotate module run order test state --- tests/common/test_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/test_command.py b/tests/common/test_command.py index 64413d9..8a19441 100644 --- a/tests/common/test_command.py +++ b/tests/common/test_command.py @@ -11,7 +11,7 @@ from mvt.common.module import MVTModule class RecordingModule(MVTModule): - run_order = [] + run_order: list[str] = [] def run(self): self.run_order.append(self.__class__.__name__)