Skip to content

Commit a4fa561

Browse files
author
Anthony Roux
committed
replacing PointOfInterests by PointsOfInterest
1 parent 5325f0b commit a4fa561

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

amadeus/reference_data/_locations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from amadeus.client.decorator import Decorator
22
from amadeus.reference_data.locations._airports import Airports
3-
from amadeus.reference_data.locations._points_of_interest import PointOfInterests
3+
from amadeus.reference_data.locations._points_of_interest import PointsOfInterest
44

55

66
class Locations(Decorator, object):
77
def __init__(self, client):
88
Decorator.__init__(self, client)
99
self.airports = Airports(client)
10-
self.points_of_interest = PointOfInterests(client)
10+
self.points_of_interest = PointsOfInterest(client)
1111

1212
def get(self, **params):
1313
'''
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from ._airports import Airports
2-
from ._points_of_interest import PointOfInterests
3-
__all__ = ['Airports', 'PointOfInterests']
2+
from ._points_of_interest import PointsOfInterest
3+
__all__ = ['Airports', 'PointsOfInterest']

amadeus/reference_data/locations/_points_of_interest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import BySquare
44

55

6-
class PointOfInterests(Decorator, object):
6+
class PointsOfInterest(Decorator, object):
77
def __init__(self, client):
88
Decorator.__init__(self, client)
99
self.by_square = BySquare(client)

0 commit comments

Comments
 (0)