Skip to content

Commit 461f13e

Browse files
committed
fix bing url
1 parent 7b285fa commit 461f13e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

mapswipe_workers/mapswipe_workers/utils/tile_functions.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,8 @@ def tile_coords_and_zoom_to_quadKey(TileX, TileY, zoom):
131131
def quadKey_to_Bing_URL(quadKey, api_key):
132132
"""Create a tile image URL linking to a Bing tile server."""
133133

134-
tile_url = (
135-
"https://ecn.t0.tiles.virtualearth.net/tiles/a{}.jpeg?g=7505&mkt=en-US&token={}".format( # noqa: E501
136-
quadKey, api_key
137-
),
134+
tile_url = "https://ecn.t0.tiles.virtualearth.net/tiles/a{}.jpeg?g=7505&mkt=en-US&token={}".format( # noqa: E501
135+
quadKey, api_key
138136
)
139137

140138
return tile_url

0 commit comments

Comments
 (0)