Skip to content

Commit b041560

Browse files
committed
Del authors on code. Delegate it to AUTHORS ;)
1 parent 1dfda97 commit b041560

14 files changed

Lines changed: 4 additions & 217 deletions

File tree

github3/api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: David Medina
53

64
import requests
75
import json

github3/core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: David Medina
53

64

75
class Paginate:

github3/errors.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: David Medina
53

64
import json
75
import github3.exceptions as exceptions

github3/exceptions.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: David Medina
53

64
class BadRequest(Exception):
75
pass

github3/handlers/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: David Medina
53

64
from github3.core import Paginate
75
from github3.converters import Modelizer

github3/handlers/gists.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: Antti Kaihola
53

64
from .base import Handler
75
from .. import models

github3/handlers/users.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: David Medina
53

64
from .base import Handler
75
import github3.models as models

github3/helpers.py

Lines changed: 0 additions & 188 deletions
This file was deleted.

github3/models/base.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
"""
2-
github3.models
3-
~~~~~~~~~~~~~~
4-
5-
This package provides the Github3 object model.
6-
"""
1+
#!/usr/bin/env python
2+
# -*- encoding: utf-8 -*-
73

84
class BaseResource(object):
95
"""A BaseResource object."""

github3/models/gists.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
3-
#
4-
# author: David Medina
53

64
from .base import BaseResource
75
from .user import User

0 commit comments

Comments
 (0)