Skip to content

Commit

Permalink
remove defered import for BatchRequestBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
shemogumbe committed Oct 2, 2024
1 parent 08f581c commit 493f6e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion msgraph/graph_service_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

if TYPE_CHECKING:
from .generated.users.item.user_item_request_builder import UserItemRequestBuilder
from msgraph_core.requests.batch_request_builder import BatchRequestBuilder


class GraphServiceClient(BaseGraphServiceClient):
Expand Down Expand Up @@ -63,7 +64,7 @@ def me(self) -> UserItemRequestBuilder:
return UserItemRequestBuilder(self.request_adapter, url_tpl_parameters)

@property
def batch(self) -> 'BatchRequestBuilder':
def batch(self) -> BatchRequestBuilder:
"""
Returns a BatchRequestBuilder to enable batch requests.
"""
Expand Down

0 comments on commit 493f6e9

Please sign in to comment.