Skip to content

Commit

Permalink
Resolved the inconsistency in response formats between the Python Ech…
Browse files Browse the repository at this point in the history
…o bot template and the C# and JavaScript Echo bot templates.
  • Loading branch information
gandiddi committed Jun 10, 2024
1 parent 01449b5 commit 3c3bf8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MyBot(ActivityHandler):
# See https://aka.ms/about-bot-activity-message to learn more about the message and other activity types.

async def on_message_activity(self, turn_context: TurnContext):
await turn_context.send_activity(f"You said '{ turn_context.activity.text }'")
await turn_context.send_activity(f"Echo: '{ turn_context.activity.text }'")

async def on_members_added_activity(
self,
Expand Down

0 comments on commit 3c3bf8e

Please sign in to comment.