remove unused variable

This commit is contained in:
Yi Huaijie 2020-05-25 19:59:28 +08:00
parent 57c1da121f
commit ac484ebbc0
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def loop_config(size):
config_list = []
num = 1
split_list = [num]
for i in range(int(math.log2(size))):
for _ in range(int(math.log2(size))):
num = num * 2
split_list.append(num)