aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/core/resources/users/emails.py
blob: 95239770ada7552fc27d2cdeed2c80faaacec448 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from . import Resource
from pygithub3.models.base import Raw


class List(Resource):

    model = Raw

    def validate(self):
        pass

    def set_uri(self):
        return 'user/emails'