Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahselek committed Jan 23, 2021
1 parent 4550ced commit 3ebe83b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion herepy/places_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,12 @@ def search_in_country(
return self.__get(data)

def places_in_circle(
self, coordinates: List[float], radius: int, query: str, limit: int = 20, lang: str = "en-US"
self,
coordinates: List[float],
radius: int,
query: str,
limit: int = 20,
lang: str = "en-US",
) -> Optional[PlacesResponse]:
"""Request a list of popular places around a location
Args:
Expand Down

2 comments on commit 3ebe83b

@abdullahselek
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@abdullahselek
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.