Closed ZiqiChai closed 5 years ago
for req1 in range(0, self.TRUNCATE): for req2 in range(0, self.TRUNCATE):
in this kind of situations, seems missing "self." before "TRUNCATE", so it will cause errors like TRUNCATE not defined.
Fixed. Thanks!
for req1 in range(0, self.TRUNCATE): for req2 in range(0, self.TRUNCATE):
in this kind of situations, seems missing "self." before "TRUNCATE", so it will cause errors like TRUNCATE not defined.