Skip to content

Commit

Permalink
Fix github api imports
Browse files Browse the repository at this point in the history
  • Loading branch information
donnemartin committed Feb 27, 2016
1 parent 922cf11 commit 81c180a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion awesome/awesome.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import re

import click
from github3 import null
from githubcli.lib.github3 import null

from awesome.lib.github import GitHub

Expand Down
4 changes: 2 additions & 2 deletions awesome/lib/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import ConfigParser as configparser

import click
from github3 import authorize, login
from github3.exceptions import UnprocessableEntity
from githubcli.lib.github3 import authorize, login
from githubcli.lib.github3.exceptions import UnprocessableEntity


class GitHub(object):
Expand Down
2 changes: 1 addition & 1 deletion tests/mock_github.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Creative Commons Attribution 4.0 International License (CC BY 4.0)
# http://creativecommons.org/licenses/by/4.0/

from github3 import null
from githubcli.lib.github3 import null


class MockRepo(object):
Expand Down

0 comments on commit 81c180a

Please sign in to comment.