change: remove locust for python version

This commit is contained in:
debugtalk
2022-04-03 00:13:28 +08:00
parent 1aeaed5050
commit f5294cb23a
7 changed files with 2 additions and 20 deletions

View File

@@ -47,10 +47,6 @@ class Config(object):
def path(self) -> Text:
return self.__config.path
@property
def weight(self) -> int:
return self.__config.weight
def variables(self, **variables) -> "Config":
self.__config.variables.update(variables)
return self
@@ -68,10 +64,6 @@ class Config(object):
self.__config.export = list(set(self.__config.export))
return self
def locust_weight(self, weight: int) -> "Config":
self.__config.weight = weight
return self
def struct(self) -> TConfig:
return self.__config