diff options
| author | 2012-04-03 19:06:02 +0200 | |
|---|---|---|
| committer | 2012-04-03 19:06:02 +0200 | |
| commit | 30033cb33d828d96492c429407977a9f7912bf28 (patch) | |
| tree | 4b2804b3cc2391f19325dbe302b95a0c98a87b65 /pygithub3/services/gists/__init__.py | |
| parent | services.gists.Gist done (diff) | |
| download | python-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__.py | 2 |
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): |
