From b456c6ad3b80b91a450854831c8644e672c506c4 Mon Sep 17 00:00:00 2001 From: Redjumpman Date: Tue, 19 Jun 2018 20:27:36 -0500 Subject: [PATCH] [V3 Config] Fixed set_raw example in docstring (#1876) fixed doc string --- redbot/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/config.py b/redbot/core/config.py index 0eb729aca..85a8f1df5 100644 --- a/redbot/core/config.py +++ b/redbot/core/config.py @@ -392,7 +392,7 @@ class Group(Value): # is equivalent to data = {"foo": {"bar": None}} - d["foo"]["bar"] = "baz" + data["foo"]["bar"] = "baz" Parameters ----------