Skip to content

Commit 9844b18

Browse files
Merge pull request #202 from developmentseed/kyle/fix-top-level-exports
fix: Fix top-level re-exports for type checkers
2 parents 44c9fe4 + feb8c2f commit 9844b18

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

morecantile/__init__.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@
1010

1111
__version__ = "7.0.2"
1212

13-
from .commons import BoundingBox, Coords, Tile # noqa
14-
from .defaults import TileMatrixSets, tms # noqa
15-
from .models import TileMatrixSet # noqa
13+
from .commons import BoundingBox, Coords, Tile
14+
from .defaults import TileMatrixSets, tms
15+
from .models import TileMatrixSet
16+
17+
__all__ = [
18+
"BoundingBox",
19+
"Coords",
20+
"Tile",
21+
"TileMatrixSet",
22+
"TileMatrixSets",
23+
"tms",
24+
]

0 commit comments

Comments
 (0)