Skip to content

Commit 8e809f5

Browse files
committed
cleanup
1 parent cc02f62 commit 8e809f5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/spatialdata_plot/pl/render.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,8 @@ def _render_shapes(
138138

139139
shapes = gpd.GeoDataFrame(shapes, geometry="geometry")
140140

141-
# Determine which method to use for rendering. Default is matplotlib for under 100 shapes and datashader for more
142-
# User can also specify the method to use
141+
# Determine which method to use for rendering
143142
method = render_params.method
144-
145143
if method is None:
146144
method = "datashader" if len(shapes) > 100 else "matplotlib"
147145
elif method not in ["matplotlib", "datashader"]:

0 commit comments

Comments
 (0)