Skip to content

Commit

Permalink
DOC: fix indentation in docstring of from_wkb/from_wkt (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche authored Jun 24, 2024
1 parent fcbddf2 commit 870d2ae
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions dask_geopandas/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,10 +891,10 @@ def from_wkt(wkt, crs=None):
wkt: dask Series
A dask Series containing WKT objects.
crs: value, optional
Coordinate Reference System of the geometry objects. Can be anything
accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Coordinate Reference System of the geometry objects.
Can be anything accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Returns
-------
Expand All @@ -916,10 +916,10 @@ def from_wkb(wkb, crs=None):
wkb: dask Series
A dask Series containing WKB objects.
crs: value, optional
Coordinate Reference System of the geometry objects. Can be anything
accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Coordinate Reference System of the geometry objects.
Can be anything accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Returns
-------
Expand Down
16 changes: 8 additions & 8 deletions dask_geopandas/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -923,10 +923,10 @@ def from_wkt(wkt, crs=None):
wkt: dask Series
A dask Series containing WKT objects.
crs: value, optional
Coordinate Reference System of the geometry objects. Can be anything
accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Coordinate Reference System of the geometry objects.
Can be anything accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Returns
-------
Expand All @@ -948,10 +948,10 @@ def from_wkb(wkb, crs=None):
wkb: dask Series
A dask Series containing WKB objects.
crs: value, optional
Coordinate Reference System of the geometry objects. Can be anything
accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Coordinate Reference System of the geometry objects.
Can be anything accepted by
:meth:`pyproj.CRS.from_user_input() <pyproj.crs.CRS.from_user_input>`,
such as an authority string (eg "EPSG:4326") or a WKT string.
Returns
-------
Expand Down

0 comments on commit 870d2ae

Please sign in to comment.