-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename Enums for their singular forms (#261)
- Loading branch information
1 parent
ed9f205
commit b5bcb0f
Showing
4 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"""TMS Api.""" | ||
|
||
from ..dependencies import TileMatrixSetNames, TMSParams | ||
from ..dependencies import TileMatrixSetName, TMSParams | ||
from .factory import TMSFactory | ||
|
||
tms = TMSFactory(supported_tms=TileMatrixSetNames, tms_dependency=TMSParams) | ||
tms = TMSFactory(supported_tms=TileMatrixSetName, tms_dependency=TMSParams) | ||
router = tms.router # noqa |