[mypy] Fix type annotations for cellular_automata (#4236)

* [mypy] Fix type annotations for cellullar_automata

* mypy --ignore-missing-imports

* mypy --ignore-missing-imports

* Blank lines

* Blank lines

Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
Novice :) 2021-03-20 12:02:16 +05:30 committed by GitHub
parent dd757dce38
commit 2c6f553ccb
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 # type: ignore
from PIL import Image
# Define glider example
GLIDER = [

View File

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