Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Gillies committed Apr 21, 2021
1 parent 7e89de5 commit d62250e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changes
=======

1.2.1 (2021-04-21)
------------------

- A missing comma in the ``__all__`` list caused the neighbors and parent
method to drop out of the module documentation (#135).

1.2.0 (2021-04-19)
------------------

Expand Down
4 changes: 2 additions & 2 deletions mercantile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def fake_decorator(func):
from functools import lru_cache


__version__ = "1.2.0"
__version__ = "1.2.1"

__all__ = [
"Bbox",
Expand All @@ -40,7 +40,7 @@ def fake_decorator(func):
"children",
"feature",
"lnglat",
"neighbors"
"neighbors",
"parent",
"quadkey",
"quadkey_to_tile",
Expand Down

2 comments on commit d62250e

@daniel-j-h
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙈 😅

@sgillies
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python's implicit string joining for the win!

Please sign in to comment.