Skip to content

Commit e400d9d

Browse files
committed
remove unnecessary condition
1 parent 3d93b81 commit e400d9d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

climada/util/plot.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,7 @@ def add_cntry_names(axis, extent, projection=ccrs.PlateCarree()):
364364
point_y = point.centroid.xy[1][0]
365365
if (point_x <= extent[1]) and (point_x > extent[0]):
366366
if (point_y <= extent[3]) and (point_y > extent[2]):
367-
if 'Sint' not in rec.attributes['NAME']:
368-
axis.text(point_x, point_y, rec.attributes['NAME'], \
367+
axis.text(point_x, point_y, rec.attributes['NAME'], \
369368
horizontalalignment='center', verticalalignment='center', \
370369
transform=projection, fontsize=14)
371370

0 commit comments

Comments
 (0)