From 60d383cb51a8185178968c48c55570da6e2b8b62 Mon Sep 17 00:00:00 2001 From: iDutchy Date: Thu, 1 Oct 2020 22:45:57 +0000 Subject: [PATCH] oop --- discord/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/client.py b/discord/client.py index e88e662f..13d2b893 100644 --- a/discord/client.py +++ b/discord/client.py @@ -278,14 +278,14 @@ class Client: # internals - def set_embed_color(self, new_color): + def set_embed_color(self, color): """Set a new default embed color. This will raise a TypeError if an improper format was passed. Parameters ----------- - name: Union[:class:`.Colour`, :class:`int`] + color: Union[:class:`.Colour`, :class:`int`] The new color you want to set as default embed color. Pass either an instance of discord.Color or a valid 0x****** HEX value.