diff options
Diffstat (limited to '')
| -rw-r--r-- | pygithub3/services/users/__init__.py | 1 | ||||
| -rw-r--r-- | pygithub3/services/users/emails.py | 2 | ||||
| -rw-r--r-- | pygithub3/services/users/followers.py | 4 | ||||
| -rw-r--r-- | pygithub3/services/users/keys.py | 1 |
4 files changed, 0 insertions, 8 deletions
diff --git a/pygithub3/services/users/__init__.py b/pygithub3/services/users/__init__.py index c448319..29a8e1c 100644 --- a/pygithub3/services/users/__init__.py +++ b/pygithub3/services/users/__init__.py @@ -25,7 +25,6 @@ class User(Service): authenticated user. .. warning:: - If you aren't authenticated and call without user, it returns 403 :: diff --git a/pygithub3/services/users/emails.py b/pygithub3/services/users/emails.py index 084a29c..09f6683 100644 --- a/pygithub3/services/users/emails.py +++ b/pygithub3/services/users/emails.py @@ -8,7 +8,6 @@ class Emails(Service): """ Consume `Emails API <http://developer.github.com/v3/users/emails/>`_ .. warning:: - You must be authenticated for all requests """ @@ -26,7 +25,6 @@ class Emails(Service): :param list emails: Emails to add .. note:: - It rejects non-valid emails :: diff --git a/pygithub3/services/users/followers.py b/pygithub3/services/users/followers.py index d6969e2..5a8176d 100644 --- a/pygithub3/services/users/followers.py +++ b/pygithub3/services/users/followers.py @@ -19,7 +19,6 @@ class Followers(Service): authenticated user's followers .. warning:: - If you aren't authenticated and call without user, it returns 403 :: @@ -40,7 +39,6 @@ class Followers(Service): authenticated user's followings .. warning:: - If you aren't authenticated and call without user, it returns 403 :: @@ -65,7 +63,6 @@ class Followers(Service): :param str user: Username .. warning:: - You must be authenticated """ request = self.make_request('users.followers.follow', user=user) @@ -77,7 +74,6 @@ class Followers(Service): :param str user: Username .. warning:: - You must be authenticated """ request = self.make_request('users.followers.unfollow', user=user) diff --git a/pygithub3/services/users/keys.py b/pygithub3/services/users/keys.py index 996233c..2884881 100644 --- a/pygithub3/services/users/keys.py +++ b/pygithub3/services/users/keys.py @@ -8,7 +8,6 @@ class Keys(Service): """ Consume `Keys API <http://developer.github.com/v3/users/keys/>`_ .. warning:: - You must be authenticated for all requests """ |
