[mypy] Add/fix type annotations for "conways_game_of_life.py" & "one_dimensional.py" (#4216)

Related Issue: #4052
This commit is contained in:
algobytewise 2021-02-22 05:24:29 +05:30 committed by GitHub
parent 81c46dfd55
commit 2a6e4bbdb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ from __future__ import annotations
from typing import List
from PIL import Image
from PIL import Image # type: ignore
# Define glider example
GLIDER = [

View File

@ -6,7 +6,7 @@ https://mathworld.wolfram.com/ElementaryCellularAutomaton.html
from __future__ import annotations
from PIL import Image
from PIL import Image # type: ignore
# Define the first generation of cells
# fmt: off