aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services/gists/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-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):