We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0776f94 commit 802cd6cCopy full SHA for 802cd6c
notebooks/Offline Checks.ipynb
@@ -147,9 +147,9 @@
147
"\n",
148
"def is_exportable_agol_tile_layer(basemaplayer) -> bool:\n",
149
" lowercase_layer_url = basemaplayer[\"url\"].lower()\n",
150
- " host_list = [\"server.arcgisonline.com\", \"services.arcgisonline.com\"]\n",
+ " HOST_LIST = [\"server.arcgisonline.com\", \"services.arcgisonline.com\"]\n",
151
" has_allowed_host_name = any(\n",
152
- " host_str in lowercase_layer_url for host_str in host_list\n",
+ " host_str in lowercase_layer_url for host_str in HOST_LIST\n",
153
" )\n",
154
" SERVICE_LIST = [\n",
155
" \"natgeo_world_map\",\n",
0 commit comments