@@ -143,8 +143,10 @@ def enhanced_by_auth(f):
143143
144144class GithubCommand (object ):
145145
146+ """Main API binding interface."""
147+
146148 def __init__ (self , request ):
147- """Main API binding interface .
149+ """Setup command object .
148150
149151 :param github2.request.GithubRequest request: HTTP request handler
150152
@@ -244,8 +246,11 @@ def bullet(title, text):
244246
245247
246248class Attribute (object ):
249+
250+ """Generic object attribute for use with :class:`BaseData`."""
251+
247252 def __init__ (self , help ):
248- """Generic object attribute for use with :class:`BaseData` .
253+ """Setup Attribute object .
249254
250255 :param str help: Attribute description
251256
@@ -259,6 +264,9 @@ def to_python(self, value):
259264
260265
261266class DateAttribute (Attribute ):
267+
268+ """Date handling attribute for use with :class:`BaseData`."""
269+
262270 format = "github"
263271 converter_for_format = {
264272 "github" : datetime_to_ghdate ,
@@ -268,7 +276,7 @@ class DateAttribute(Attribute):
268276 }
269277
270278 def __init__ (self , * args , ** kwargs ):
271- """Date handling attribute for use with :class:`BaseData` .
279+ """Setup DateAttribute object .
272280
273281 :param str format: The date format to support, see
274282 :data:`convertor_for_format` for supported options
0 commit comments