Type annotations: aliases.py: Remove Any.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-08-31 16:34:04 -07:00 committed by Eric Soroos
parent 9f011aafe3
commit be22cc3165

View File

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