aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services/gists/__init__.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-04-03 19:06:02 +0200
committerDavid Medina <davidmedina9@gmail.com>2012-04-03 19:06:02 +0200
commit30033cb33d828d96492c429407977a9f7912bf28 (patch)
tree4b2804b3cc2391f19325dbe302b95a0c98a87b65 /pygithub3/services/gists/__init__.py
parentservices.gists.Gist done (diff)
downloadpython-github3-30033cb33d828d96492c429407977a9f7912bf28.tar.xz
python-github3-30033cb33d828d96492c429407977a9f7912bf28.zip
services.gists.Comment done
Diffstat (limited to 'pygithub3/services/gists/__init__.py')
-rw-r--r--pygithub3/services/gists/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pygithub3/services/gists/__init__.py b/pygithub3/services/gists/__init__.py
index b983fea..5fbfe7a 100644
--- a/pygithub3/services/gists/__init__.py
+++ b/pygithub3/services/gists/__init__.py
@@ -2,12 +2,14 @@
# -*- encoding: utf-8 -*-
from pygithub3.services.base import Service
+from comments import Comments
class Gist(Service):
""" Consume `Gists API <http://developer.github.com/v3/gists>`_ """
def __init__(self, **config):
+ self.comments = Comments(**config)
super(Gist, self).__init__(**config)
def list(self, user=None):