Skip to content

Commit 644c56b

Browse files
committed
Fix lint warning
1 parent 70e892c commit 644c56b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

common/tests/test_pool.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44

55
from uuid import uuid4
6+
from typing import List
67
from common.pool import Pool
78
from common.block import Block
89

@@ -18,7 +19,7 @@ def _create_test_block(size):
1819
return block
1920

2021

21-
def _create_test_pool_and_block(block_sizes: [int]):
22+
def _create_test_pool_and_block(block_sizes: List[int]):
2223
pool = Pool(name="test_pool", owner=Pool.Owner.LOCAL)
2324
blocks = []
2425
for block_size in block_sizes:

0 commit comments

Comments
 (0)