Skip to content

Commit 049945c

Browse files
authored
Merge pull request #132 from LyricMaster-Bot/master
Fix a TypeError
2 parents f7378fb + b55fb12 commit 049945c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

discord/colour.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ def yellow(cls: Type[CT]) -> CT:
326326
return cls(0xFEE75C)
327327

328328
@classmethod
329-
def nitro_pink(cls, Type: [CT]) -> CT:
330-
"""A factory method that returns a :class:`Color` with a value of ``0xf47fff`.
329+
def nitro_pink(cls: Type[CT]) -> CT:
330+
"""A factory method that returns a :class:`Colour` with a value of ``0xf47fff``.
331331
332332
.. versionadded:: 2.0
333333
"""

0 commit comments

Comments
 (0)