File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11from amadeus .client .decorator import Decorator
22from 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
66class 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 '''
Original file line number Diff line number Diff line change 11from ._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 ' ]
Original file line number Diff line number Diff line change 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 )
You can’t perform that action at this time.
0 commit comments