Type annotations: Add Union & Any to aliases.py.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-08-19 16:24:06 -07:00 committed by Eric Soroos
parent 363e409b58
commit 4c45a312f0

View File

@ -1,4 +1,5 @@
from typing import Tuple 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