Update and improve documentation for API.mutes_ids
authorHarmon <Harmon758@gmail.com>
Sat, 10 Apr 2021 14:47:41 +0000 (09:47 -0500)
committerHarmon <Harmon758@gmail.com>
Sat, 10 Apr 2021 14:47:41 +0000 (09:47 -0500)
Automatically use docstring for documentation
Improve method and documentation order
Add documentation for stringify_ids parameter
Improve return type reference
Improve capitalization

docs/api.rst
tweepy/api.py

index 4ad44d2694e13109ffe63a5351f73543ca610eb8..11ee3892edb7720322347547b0c09567f09e1910 100644 (file)
@@ -175,6 +175,8 @@ Mute, block, and report users
 
 .. automethod:: API.blocks
 
+.. automethod:: API.mutes_ids
+
 
 Direct Message Methods
 ----------------------
@@ -304,14 +306,6 @@ Mute Methods
    :rtype: list of :class:`User` objects
 
 
-.. method:: API.mutes_ids([cursor])
-
-   Returns an array of numeric user ids the authenticating user has muted.
-
-   :param cursor: |cursor|
-   :rtype: list of Integers
-
-
 Spam Reporting Methods
 ----------------------
 
index ea30b749ea57b283aeb7996c9838d9d5ed34698c..385cfbaa49e1e826523848d2ec94517577a7532b 100644 (file)
@@ -2050,6 +2050,26 @@ class API:
             ), **kwargs
         )
 
+    @pagination(mode='cursor')
+    @payload('ids')
+    def mutes_ids(self, **kwargs):
+        """mutes_ids(*, stringify_ids, cursor)
+
+        Returns an array of numeric user IDs the authenticating user has muted.
+
+        :param stringify_ids: |stringify_ids|
+        :param cursor: |cursor|
+
+        :rtype: list of :class:`int`
+
+        :reference: https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-ids
+        """
+        return self.request(
+            'GET', 'mutes/users/ids', endpoint_parameters=(
+                'stringify_ids', 'cursor'
+            ), **kwargs
+        )
+
     def media_upload(self, filename, *, file=None, chunked=False,
                      media_category=None, additional_owners=None, **kwargs):
         """ :reference: https://developer.twitter.com/en/docs/twitter-api/v1/media/upload-media/overview
@@ -2309,17 +2329,6 @@ class API:
             ), **kwargs
         )
 
-    @pagination(mode='cursor')
-    @payload('ids')
-    def mutes_ids(self, **kwargs):
-        """ :reference: https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-ids
-        """
-        return self.request(
-            'GET', 'mutes/users/ids', endpoint_parameters=(
-                'stringify_ids', 'cursor'
-            ), **kwargs
-        )
-
     @pagination(mode='cursor')
     @payload('user', list=True)
     def mutes(self, **kwargs):