From 7e7571d4be73d2c3c1c56bc96e8b7df64e43451f Mon Sep 17 00:00:00 2001 From: "duanchao.bill" Date: Sat, 7 May 2022 11:11:36 +0800 Subject: [PATCH] fix: super().__init__(step) --- httprunner/step.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httprunner/step.py b/httprunner/step.py index 4e3edc12..efcc12be 100644 --- a/httprunner/step.py +++ b/httprunner/step.py @@ -34,4 +34,4 @@ class Step(object): StepThriftRequestExtraction, ], ): - super().__init__(step) + self.__step = step