Skip to content

Commit a2ab3d7

Browse files
uvchikjorisvandenbossche
authored andcommitted
Fix syntax error on Python 3.5 and wrong data type (#103)
1 parent dc6746f commit a2ab3d7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

contextily/plotting.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def add_basemap(
2424
reset_extent=True,
2525
crs=None,
2626
resampling=Resampling.bilinear,
27-
**extra_imshow_args,
28-
):
27+
**extra_imshow_args):
2928
"""
3029
Add a (web/local) basemap to `ax`
3130
...
@@ -73,7 +72,7 @@ def add_basemap(
7372
[Optional. Default=Resampling.bilinear] Resampling
7473
method for executing warping, expressed as a
7574
`rasterio.enums.Resampling` method
76-
**extra_imshow_args : dict
75+
**extra_imshow_args :
7776
Other parameters to be passed to `imshow`.
7877
7978
Example

0 commit comments

Comments
 (0)