Skip to content

Commit d80ca48

Browse files
authored
Fixed the exporting of token api module (microsoft#1763)
1 parent 9b03fa7 commit d80ca48

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

libraries/botframework-connector/botframework/connector/token_api/_token_api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
from msrest import Serializer, Deserializer
1010

1111
from ._configuration import TokenApiClientConfiguration
12-
from .operations import BotSignInOperations
13-
from .operations import UserTokenOperations
12+
from .operations._bot_sign_in_operations import BotSignInOperations
13+
from .operations._user_token_operations import UserTokenOperations
1414
from . import models
1515

1616

libraries/botframework-connector/botframework/connector/token_api/aio/_token_api_client_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
from msrest import Serializer, Deserializer
1010

1111
from .._configuration import TokenApiClientConfiguration
12-
from .operations_async import BotSignInOperations
13-
from .operations_async import UserTokenOperations
12+
from .operations_async._bot_sign_in_operations_async import BotSignInOperations
13+
from .operations_async._user_token_operations_async import UserTokenOperations
1414
from .. import models
1515

1616

libraries/botframework-connector/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"botframework.connector.teams.operations",
4141
"botframework.connector.token_api",
4242
"botframework.connector.token_api.aio",
43+
"botframework.connector.token_api.aio.operations_async",
4344
"botframework.connector.token_api.models",
4445
"botframework.connector.token_api.operations",
4546
],

0 commit comments

Comments
 (0)