Skip to content

Commit

Permalink
Fix make_point example
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Trigona-Harany committed Mar 11, 2023
1 parent 4ff42e2 commit e6b4fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/plpython.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ When authoring a Postgres function that takes a PostGIS geometry as an input par
RETURNS geometry
AS $$
from plpygis import Point
p = Point(x, y)
p = Point((x, y))
return p
$$ LANGUAGE plpython3u;
Expand Down

0 comments on commit e6b4fe0

Please sign in to comment.