Skip to content

Commit 2c6f553

Browse files
noviiceecclauss
andauthored
[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 <[email protected]>
1 parent dd757dc commit 2c6f553

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cellular_automata/conways_game_of_life.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from typing import List
99

10-
from PIL import Image # type: ignore
10+
from PIL import Image
1111

1212
# Define glider example
1313
GLIDER = [

cellular_automata/one_dimensional.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from __future__ import annotations
88

9-
from PIL import Image # type: ignore
9+
from PIL import Image
1010

1111
# Define the first generation of cells
1212
# fmt: off

0 commit comments

Comments
 (0)