File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -583,6 +583,11 @@ class AuthenticatedUser(User):
583
583
currently authenticated user's plan and private email information.
584
584
585
585
.. versionadded:: 1.0.0
586
+
587
+ .. versionchanged:: 1.0.0
588
+
589
+ The ``total_private_gists`` attribute is no longer returned by
590
+ GitHub's API and so is removed.
586
591
"""
587
592
588
593
def _update_attributes (self , user ):
@@ -592,9 +597,6 @@ def _update_attributes(self, user):
592
597
#: Number of private repos owned by this user
593
598
self .owned_private_repos = user ['owned_private_repos' ]
594
599
595
- #: Number of private gists owned by this user
596
- self .total_private_gists = user ['total_private_gists' ]
597
-
598
600
#: Total number of private repos
599
601
self .total_private_repos = user ['total_private_repos' ]
600
602
You can’t perform that action at this time.
0 commit comments