Fix type annotations in render_tiles in warp.py
In higher versions of python (>=3.8), you cannot import the `warp.py' module

This error is caused by tuple[int,int] which is not allowed in the function definition, as this is subscripting the type `tuple'
So we replace tuple -> Tuple and dict -> Dict
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).
View this failed invocation of the CLA check for more information.
For the most up to date status, view the checks section at the bottom of the pull request.
Actually this should be supported in py-3.9+ per https://peps.python.org/pep-0585. Which specific version of Python are you using? Does adding "from future import annotations" at the top of the file fix the problem?
Oh interesting. It looks like it must just be python 3.8. I was trying to run the colab example electron microscopy section alignment and getting the error I posted above