Skip to content

Commit 998cb56

Browse files
committed
Fix typo in urlreplacehandler option import
1 parent 760f9cc commit 998cb56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

msgraph/graph_request_adapter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from typing import Dict, Optional
22
import httpx
33
from kiota_abstractions.authentication import AuthenticationProvider
4-
from kiota_http.middleware.options import UrlReplaceHandlerOptions
4+
from kiota_http.middleware.options import UrlReplaceHandlerOption
55
from msgraph_core import APIVersion, BaseGraphRequestAdapter, GraphClientFactory
66
from msgraph_core.middleware.options import GraphTelemetryHandlerOption
77

88
from ._version import VERSION
99

1010
options = {
11-
UrlReplaceHandlerOption.get_key(): UrlReplaceHandlerOptions(
11+
UrlReplaceHandlerOption.get_key(): UrlReplaceHandlerOption(
1212
enabled = True,
1313
replacement_pairs = {"/users/me-token-to-replace": "/me"}
1414
),

0 commit comments

Comments
 (0)