8000 resolving merge conflict · guptarohan41/botbuilder-python@566d80a · GitHub
[go: up one dir, main page]

Skip to content

Commit 566d80a

Browse files
committed
resolving merge conflict
2 parents b54abc6 + 9f1901c commit 566d80a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

libraries/botbuilder-core/botbuilder/core/teams/teams_info.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4+
<<<<<<< HEAD
45
from typing import List, Tuple
56
from botbuilder.schema import ConversationParameters, ConversationReference
7+
=======
8+
from typing import List
9+
from botbuilder.schema import ConversationParameters
10+
>>>>>>> 9f1901c313c763fb6ab6dbc884625d6fceac83f0
611
from botbuilder.core.turn_context import Activity, TurnContext
712
from botbuilder.schema.teams import (
813
ChannelInfo,
@@ -18,7 +23,11 @@ class TeamsInfo:
1823
@staticmethod
1924
async def send_message_to_teams_channel(
2025
turn_context: TurnContext, activity: Activity, teams_channel_id: str
26+
<<<<<<< HEAD
2127
) -> Tuple[ConversationReference, str]:
28+
=======
29+
) -> tuple:
30+
>>>>>>> 9f1901c313c763fb6ab6dbc884625d6fceac83f0
2231
if not turn_context:
2332
raise ValueError("The turn_context cannot be None")
2433
if not turn_context.activity:
@@ -39,9 +48,13 @@ async def send_message_to_teams_channel(
3948
return (result[0], result[1])
4049

4150
@staticmethod
51+
<<<<<<< HEAD
4252
async def _create_conversation_callback(
4353
new_turn_context,
4454
) -> Tuple[ConversationReference, str]:
55+
=======
56+
async def _create_conversation_callback(new_turn_context) -> tuple:
57+
>>>>>>> 9f1901c313c763fb6ab6dbc884625d6fceac83f0
4558
new_activity_id = new_turn_context.activity.id
4659
conversation_reference = TurnContext.get_conversation_reference(
4760
new_turn_context.activity

0 commit comments

Comments
 (0)
0