Skip to content

Commit

Permalink
Update getting_started.rst
Browse files Browse the repository at this point in the history
Fixing typo and changing example code to actually make it work as is.
  • Loading branch information
attzonko authored Mar 19, 2021
1 parent 508dda3 commit 88fc390
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ We recommend creating an `entrypoint` file for executing the bot, which will loo
#!/usr/bin/env python
from mmpy_bot import Bot, Settings, ExamplePlugin, WebhookExample
from my_plugin import MyPlugin
from mmpy_bot import Bot, Settings, ExamplePlugin, WebHookExample
# from my_plugin import MyPlugin <== Example of importing your own plugin, don't forget to add it to the plugins list.
bot = Bot(
settings=Settings(
Expand All @@ -53,7 +53,7 @@ We recommend creating an `entrypoint` file for executing the bot, which will loo
BOT_TEAM = "<team_name>",
SSL_VERIFY = True,
),
plugins=[ExamplePlugin(), WebhookExample()],
plugins=[ExamplePlugin(), WebHookExample()],
)
bot.run()
Expand Down

0 comments on commit 88fc390

Please sign in to comment.