Type annotations: aliases.py: Remove Any.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-08-31 16:34:04 -07:00
parent 61b42e6a08
commit 02241b4245

View File

@ -1,5 +1,4 @@
from typing import Tuple, Union from typing import Tuple, Union
from typing import Any
# Type aliases; names subject to change # Type aliases; names subject to change
LURD = Tuple[int, int, int, int] # left, up(per), right, down = x0, y0, x1, y1 LURD = Tuple[int, int, int, int] # left, up(per), right, down = x0, y0, x1, y1