diff --git a/github/GithubObject.py b/github/GithubObject.py index 8622bc8e..0f612cf7 100644 --- a/github/GithubObject.py +++ b/github/GithubObject.py @@ -16,7 +16,8 @@ import datetime import GithubException class _NotSetType: - pass + def __repr__( self ): + return "NotSet" NotSet = _NotSetType() class BasicGithubObject( object ):