Skip to content

Commit

Permalink
Update shapely/geometry/base.py
Browse files Browse the repository at this point in the history
Co-authored-by: Mike Taves <mwtoews@gmail.com>
  • Loading branch information
jorisvandenbossche and mwtoews committed Feb 27, 2021
1 parent b262de1 commit b269b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shapely/geometry/base.py
Expand Up @@ -649,7 +649,7 @@ def normalize(self):
>>> from shapely.wkt import loads
>>> p = loads("MULTILINESTRING((0 0, 1 1), (3 3, 2 2))")
>>> p.normalize().wkt
"MULTILINESTRING ((2 2, 3 3), (0 0, 1 1))"
'MULTILINESTRING ((2 2, 3 3), (0 0, 1 1))'
"""
# self.impl['normalize'](self)
if self._geom is None:
Expand Down

0 comments on commit b269b39

Please sign in to comment.