Skip to content

Commit

Permalink
[Street View] Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sk-zk committed Sep 17, 2024
1 parent ebfd5fa commit 30db0cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/streetlevel.streetview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Finding panoramas
from aiohttp import ClientSession
async with ClientSession() as session:
pano = await streetview.find_panorama_async(45.59395, 24.631609)
pano = await streetview.find_panorama_async(45.59395, 24.631609, session)
print(pano.id)
print(pano.lat, pano.lon)
print(pano.date)
Expand All @@ -46,7 +46,7 @@ Finding panoramas
from aiohttp import ClientSession
async with ClientSession() as session:
pano = await streetview.find_panorama_by_id_async("Py5vaKsLWJG16XyZosdYBQ")
pano = await streetview.find_panorama_by_id_async("Py5vaKsLWJG16XyZosdYBQ", session)
print(pano.id)
print(pano.lat, pano.lon)
print(pano.date)
Expand Down

0 comments on commit 30db0cf

Please sign in to comment.