change unused variable name to follow convention

This commit is contained in:
matixezor 2021-03-14 19:34:53 +01:00
parent 9ea066a79e
commit e8a6a287a7

View File

@ -3,7 +3,7 @@ from random import choices
def generate_field() -> List[List[int]]:
return [choices(range(6), weights=[8, 8, 4, 4, 4, 4], k=10) for y in range(10)]
return [choices(range(6), weights=[8, 8, 4, 4, 4, 4], k=10) for _ in range(10)]
class Environment: