Skip to content

Commit f5a99d8

Browse files
authored
Remove AppOptions when creating App (#334)
We are no longer requiring AppOptions to be passed in #### PR Dependency Tree * **PR #334** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal)
1 parent 4bb4655 commit f5a99d8

File tree

1 file changed

+3
-2
lines changed
  • packages/cli/templates/python/echo/src

1 file changed

+3
-2
lines changed

packages/cli/templates/python/echo/src/main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
import re
33

44
from microsoft.teams.api import MessageActivity, TypingActivityInput
5-
from microsoft.teams.apps import ActivityContext, App, AppOptions
5+
from microsoft.teams.apps import ActivityContext, App
66
from microsoft.teams.devtools import DevToolsPlugin
77

8-
app = App(AppOptions(plugins=[DevToolsPlugin()]))
8+
app = App(plugins=[DevToolsPlugin()])
9+
910

1011

1112
@app.on_message_pattern(re.compile(r"hello|hi|greetings"))

0 commit comments

Comments
 (0)