From 8d1ee4609ba4259a32a797efc7aa03eb18dcdb14 Mon Sep 17 00:00:00 2001 From: Achxy <74144790+Achxy@users.noreply.github.com> Date: Mon, 25 Apr 2022 18:00:00 +0530 Subject: [PATCH] Fix typo in the docstring of `FeatureDisabled` (#37) --- revolt/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/revolt/errors.py b/revolt/errors.py index a241b3b..cd22422 100755 --- a/revolt/errors.py +++ b/revolt/errors.py @@ -16,7 +16,7 @@ class ServerError(RevoltError): "Internal server error" class FeatureDisabled(RevoltError): - """Base class for any any feature disabled""" + """Base class for any feature disabled errors""" class AutumnDisabled(FeatureDisabled): """The autumn feature is disabled"""