Skip to content

Commit 567bd63

Browse files
committed
Remove extra comment, add changelog.
1 parent e2b1dfb commit 567bd63

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Note: Minor version `0.X.0` update might break the API, It's recommanded to pin
1111
### Fixed
1212

1313
* reduce validation error message verbosity when discriminating Geometry types
14+
* MultiPoint WKT now includes parentheses around each Point
1415

1516
### Added
1617

geojson_pydantic/geometries.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ class MultiPoint(_GeometryBase):
134134

135135
def __wkt_coordinates__(self, coordinates: Any, force_z: bool) -> str:
136136
"""return WKT coordinates."""
137-
# return _position_list_wkt_coordinates(coordinates, force_z)
138137
return ", ".join(
139138
f"({_position_wkt_coordinates(position, force_z)})"
140139
for position in coordinates

0 commit comments

Comments
 (0)