Skip to content

Commit 666cfa6

Browse files
authored
Add missing type import (#438)
In one of the examples in the documentation a type import was missing
1 parent f88e6e2 commit 666cfa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/examples/code/mosaic_from_urls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The goal is to build a minimalist Mosaic Backend which takes COG paths as input.
1717
app/backends.py
1818
1919
"""
20-
from typing import Type, List, Tuple, Dict
20+
from typing import Type, List, Tuple, Dict, Union
2121

2222
import attr
2323
from rio_tiler.io import BaseReader, COGReader, MultiBandReader, MultiBaseReader

0 commit comments

Comments
 (0)