Skip to content

Commit b06ee71

Browse files
Add strict=False to follow code style (#20)
1 parent 8b337bf commit b06ee71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Fig6_PyGMT_geopandas.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
")\n",
4545
"\n",
4646
"# Add the states Alaska and Hawaii separately in the lower left corner\n",
47-
"for name, xshift in zip([\"Alaska\", \"Hawaii\"], [\"1.2c\", \"2.8c\"]):\n",
47+
"for name, xshift in zip([\"Alaska\", \"Hawaii\"], [\"1.2c\", \"2.8c\"], strict=False):\n",
4848
" substate = states[(states[\"name\"] == name)]\n",
4949
" substate = substate.explode()\n",
5050
" substate = substate[substate.to_crs(epsg=6933).area > 1.0e8].dissolve()\n",

0 commit comments

Comments
 (0)