From 4a44ddba7b9d772b7e1fdb033ce04c30e2b9b5f1 Mon Sep 17 00:00:00 2001 From: Harmon Date: Sun, 31 Oct 2021 14:14:42 -0500 Subject: [PATCH] Fix version added directive usage in documentation for HTTPException --- tweepy/errors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tweepy/errors.py b/tweepy/errors.py index 85b5ccd..b27a0ca 100644 --- a/tweepy/errors.py +++ b/tweepy/errors.py @@ -23,6 +23,8 @@ class HTTPException(TweepyException): Exception raised when an HTTP request fails + .. versionadded:: 4.0 + Attributes ---------- response : requests.Response @@ -33,8 +35,6 @@ class HTTPException(TweepyException): The error codes the Twitter API responded with, if any api_messages : List[str] The error messages the Twitter API responded with, if any - - .. versionadded:: 4.0 """ def __init__(self, response): -- 2.25.1