File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 66class Analytics (Decorator , object ):
77 def __init__ (self , client ):
88 Decorator .__init__ (self , client )
9- self .traveled = Traveled (client )
9+ self .air_traffic . traveled = Traveled (client )
1010 self .fare_searches = FareSearches (client )
11+
Original file line number Diff line number Diff line change 1+ from ._traveled import Traveled
2+
3+ __all__ = ['Traveled' ]
Original file line number Diff line number Diff line change 8383 ))
8484
8585 with it ('.travel.analytics.air_traffic.traveled.get' ):
86- self .client .travel .analytics .air_traffic .traveld .get (a = 'b' )
86+ self .client .travel .analytics .air_traffic .traveled .get (a = 'b' )
8787 expect (self .client .get ).to (have_been_called_with (
8888 '/v1/travel/analytics/air-traffic/traveled' , a = 'b'
8989 ))
Original file line number Diff line number Diff line change @@ -26,3 +26,4 @@ usedevelop=True
2626max-complexity = 5
2727inline-quotes = single
2828multiline-quotes = single
29+ max-line-length = 82
You can’t perform that action at this time.
0 commit comments