aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/resources/orgs.py
blob: 3996172370415f1d3f797da2203c09fc12d084a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from .base import Resource

__all__ = ('Org', )


class Org(Resource):

    _dates = ('created_at', )

    def __str__(self):
        return '<Org (%s)>' % getattr(self, 'name', '')