Skip to content

Commit

Permalink
Add missing type import (#438)
Browse files Browse the repository at this point in the history
In one of the examples in the documentation a type import was missing
  • Loading branch information
msfstef authored Feb 24, 2022
1 parent f88e6e2 commit 666cfa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/examples/code/mosaic_from_urls.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 666cfa6

Please sign in to comment.