Annotate module run order test state

This commit is contained in:
Janik Besendorf
2026-06-06 17:27:44 +02:00
parent 4530d496d3
commit 3549002ec2
+1 -1
View File
@@ -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__)