From d9a63b45d4858fe35ee28efdcc4c4788983c4772 Mon Sep 17 00:00:00 2001 From: Will Date: Sun, 15 Oct 2017 20:13:25 -0400 Subject: [PATCH] [Docs] Fix imports in Config (#1015) --- docs/framework_config.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/framework_config.rst b/docs/framework_config.rst index d982ef211..13b031774 100644 --- a/docs/framework_config.rst +++ b/docs/framework_config.rst @@ -17,7 +17,7 @@ Basic Usage .. code-block:: python - from core import Config + from redbot.core import Config class MyCog: def __init__(self): @@ -43,7 +43,7 @@ First, you need to import Config: .. code-block:: python - from core import Config + from redbot.core import Config Then, in the class's :code:`__init__` function, you need to get a config instance: