Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Jun 21, 2022
1 parent 3514f75 commit 7af06ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geemap/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -6470,7 +6470,7 @@ def fishnet(
delta=1.0,
intersect=True,
output=None,
**kwarges,
**kwargs,
):
"""Create a fishnet (i.e., rectangular grid) based on an input vector dataset.
Expand All @@ -6490,7 +6490,7 @@ def fishnet(
"""
if isinstance(data, str):

data = vector_to_ee(data, **kwarges)
data = vector_to_ee(data, **kwargs)

if isinstance(data, ee.FeatureCollection) or isinstance(data, ee.Feature):
data = data.geometry()
Expand Down

0 comments on commit 7af06ad

Please sign in to comment.