From 35eeb761eb549f9ea4e84f0ab7d08db7f84ad33a Mon Sep 17 00:00:00 2001 From: andrei Date: Mon, 12 Jun 2017 17:18:33 -0700 Subject: [PATCH] [docs] specify that \_\_init\_\_.py is required --- docs/bot_tutorial/first_steps.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/bot_tutorial/first_steps.md b/docs/bot_tutorial/first_steps.md index aecf2e8..0b4b540 100644 --- a/docs/bot_tutorial/first_steps.md +++ b/docs/bot_tutorial/first_steps.md @@ -10,11 +10,16 @@ Once you have a Discord bot account, you can then setup your workspace. For now ``` disco-tutorial/ - config.yaml - plugins/ - tutorial.py + config.yaml + plugins/ + __init__.py + tutorial.py ``` +{% hint style='tip' %} +The \_\_init\_\_.py file is required for Python to find your plugin, but it can remain empty. +{% endhint %} + Within the config file, paste the following template configuration and modify the token key to contain the token you obtained above: