From 15cad4009ceb061bc533c72214e551021835315c Mon Sep 17 00:00:00 2001 From: tobiaswicker <51234715+tobiaswicker@users.noreply.github.com> Date: Wed, 18 Sep 2019 09:35:38 +0200 Subject: [PATCH] Improve wording --- Making-your-bot-persistent.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Making-your-bot-persistent.md b/Making-your-bot-persistent.md index 4c38bac..1b94b83 100644 --- a/Making-your-bot-persistent.md +++ b/Making-your-bot-persistent.md @@ -11,7 +11,9 @@ Three classes concerning persistence in bots have been added. [DictPersistence](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.dictpersistence.html) - Uses in memory dicts and easy conversion to and from JSON to make the bot persistent. ## 3rd party persistence classes -If you want to create your own persistence class, please carefully read the docs on [BasePersistence](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.basepersistence.html). It will tell you what methods you need to overwrite. If you've written a persistence class that could be of use to others (e.g. a general one covering all types of data). Please add it below. +If you want to create your own persistence class, please carefully read the docs on [BasePersistence](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.basepersistence.html). It will tell you what methods you need to overwrite. + +If you've written a persistence class that could benefit others (e.g. a general one covering all types of data), please add it below. ## What do I need to change? To make your bot persistent you need to do the following.