Skip to content

Commit 7b285fa

Browse files
committed
fix bing url
1 parent 5e4891e commit 7b285fa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mapswipe_workers/mapswipe_workers/utils/tile_functions.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,9 @@ def quadKey_to_Bing_URL(quadKey, api_key):
132132
"""Create a tile image URL linking to a Bing tile server."""
133133

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

139140
return tile_url

0 commit comments

Comments
 (0)