From 00c7f70ec2f0e867392194558e49d9ae95dea6a5 Mon Sep 17 00:00:00 2001 From: Oliver Thompson Date: Tue, 3 Oct 2023 11:51:46 +0100 Subject: [PATCH] Update DataStore docstring to mention an instance is attached to BotApp --- lightbulb/utils/data_store.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lightbulb/utils/data_store.py b/lightbulb/utils/data_store.py index d68710a3..87a825b6 100644 --- a/lightbulb/utils/data_store.py +++ b/lightbulb/utils/data_store.py @@ -46,6 +46,8 @@ class DataStore(t.Dict[str, t.Any]): 'bar' >>> d DataStore() + + A DataStore instance is attached to :obj:`~.app.BotApp` instances as :attr:`bot.d <.app.BotApp.d>` for your convenience. """ __slots__ = ()