File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11from kiota_abstractions .authentication import AuthenticationProvider
2- from msgraph . core import BaseGraphRequestAdapter
2+ from msgraph_core import BaseGraphRequestAdapter
33
44
55class GraphRequestAdapter (BaseGraphRequestAdapter ):
Original file line number Diff line number Diff line change 1- from .generated import BaseGraphClient
2- from .graph_request_adapter import BaseGraphRequestAdapter
1+ from .generated . base_graph_service_client import BaseGraphServiceClient
2+ from .graph_request_adapter import GraphRequestAdapter
33
4- class GraphServiceClient (BaseGraphClient ):
5- def __init__ (self , request_adapter : BaseGraphRequestAdapter ) -> None :
6- super ().init (request_adapter )
4+ class GraphServiceClient (BaseGraphServiceClient ):
5+ def __init__ (self , request_adapter : GraphRequestAdapter ) -> None :
6+ super ().__init__ (request_adapter )
You can’t perform that action at this time.
0 commit comments