mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 21:28:10 +03:00
api: make details parameter optional
This commit is contained in:
parent
1facfd019b
commit
ebcf8c2b6b
@ -127,13 +127,13 @@ class NominatimAPIAsync:
|
||||
|
||||
|
||||
async def lookup(self, place: PlaceRef,
|
||||
details: LookupDetails) -> Optional[DetailedResult]:
|
||||
details: Optional[LookupDetails] = None) -> Optional[DetailedResult]:
|
||||
""" Get detailed information about a place in the database.
|
||||
|
||||
Returns None if there is no entry under the given ID.
|
||||
"""
|
||||
async with self.begin() as db:
|
||||
return await get_place_by_id(db, place, details)
|
||||
async with self.begin() as conn:
|
||||
return await get_place_by_id(conn, place, details or LookupDetails())
|
||||
|
||||
|
||||
class NominatimAPI:
|
||||
@ -168,7 +168,7 @@ class NominatimAPI:
|
||||
|
||||
|
||||
def lookup(self, place: PlaceRef,
|
||||
details: LookupDetails) -> Optional[DetailedResult]:
|
||||
details: Optional[LookupDetails] = None) -> Optional[DetailedResult]:
|
||||
""" Get detailed information about a place in the database.
|
||||
"""
|
||||
return self._loop.run_until_complete(self._async_api.lookup(place, details))
|
||||
|
Loading…
Reference in New Issue
Block a user