From 666cfa674090df3dd5568a037029ba4816d20395 Mon Sep 17 00:00:00 2001 From: Stefanos Mousafeiris Date: Thu, 24 Feb 2022 13:48:42 +0200 Subject: [PATCH] Add missing type import (#438) In one of the examples in the documentation a type import was missing --- docs/examples/code/mosaic_from_urls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/code/mosaic_from_urls.md b/docs/examples/code/mosaic_from_urls.md index 6618aa055..28f9e5913 100644 --- a/docs/examples/code/mosaic_from_urls.md +++ b/docs/examples/code/mosaic_from_urls.md @@ -17,7 +17,7 @@ The goal is to build a minimalist Mosaic Backend which takes COG paths as input. app/backends.py """ -from typing import Type, List, Tuple, Dict +from typing import Type, List, Tuple, Dict, Union import attr from rio_tiler.io import BaseReader, COGReader, MultiBandReader, MultiBaseReader