File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def is_authenticated(self):
2727 return self .plan is not None
2828
2929 def __repr__ (self ):
30- return "<Organization: %s>" % ( self .login )
30+ return "<Organization: %s>" % self .login
3131
3232
3333class Organizations (GithubCommand ):
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def _project(self):
2828 project = property (_project )
2929
3030 def __repr__ (self ):
31- return "<Repository: %s>" % ( self ._project ())
31+ return "<Repository: %s>" % self .project
3232
3333
3434class Repositories (GithubCommand ):
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def is_authenticated(self):
3333 return self .plan is not None
3434
3535 def __repr__ (self ):
36- return "<User: %s>" % ( self .login )
36+ return "<User: %s>" % self .login
3737
3838
3939class Users (GithubCommand ):
You can’t perform that action at this time.
0 commit comments