Skip to content

Commit

Permalink
STY: PEP8 fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman committed Oct 12, 2023
1 parent 7c7f309 commit ad650fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions act/plotting/geodisplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,10 @@ def geoplot(
plt.title(title)

if stamen and img_tile is None:
tiler = img_tiles.Stamen(stamen)
warnings.warn(
"Stamen is deprecated in Cartopy and in future versions of ACT, "
"please use img_tile to specify the image background. ")
tiler = img_tiles.Stamen(stamen)
warnings.warn(
"Stamen is deprecated in Cartopy and in future versions of ACT, "
"please use img_tile to specify the image background. ")
else:
if img_tile is not None:
tiler = getattr(img_tiles, img_tile)(**img_tile_args)
Expand Down

0 comments on commit ad650fb

Please sign in to comment.