Skip to content

Commit 720194c

Browse files
FIXUP for add try-except around __geom__
1 parent fa96250 commit 720194c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

geopandas/vectorized.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ cpdef from_shapely(object L):
121121
try:
122122
geos_geom = <np.uintp_t> g.__geom__
123123
except AttributeError:
124-
msg = ("Inputs to from_shapely must be shapely eometries. "
124+
msg = ("Inputs to from_shapely must be shapely geometries. "
125125
"Got %s" % str(g))
126126
raise TypeError(msg)
127127
geom = GEOSGeom_clone_r(handle, <GEOSGeometry *> geos_geom) # create a copy rather than deal with gc

0 commit comments

Comments
 (0)