Skip to content

Commit c4c4b6e

Browse files
author
Kenneth Reitz
committed
whitespace
1 parent 37dbc38 commit c4c4b6e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

github3/core.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class GitHub(object):
2424
def __init__(self, apiurl=API_URL):
2525
self.__basic_auth = None
2626

27+
2728
def _get(self, *path):
2829
headers = {'Accept': self.accept}
2930

@@ -38,14 +39,18 @@ def _get(self, *path):
3839

3940
return r
4041

42+
43+
4144
def auth(self, username, password):
4245
self.__basic_auth = (username, password)
4346
return self.logged_in
4447

48+
4549
def oauth(self):
4650
# TODO: oAuth
4751
pass
4852

53+
4954
@property
5055
def logged_in(self):
5156
r = self._get('')

0 commit comments

Comments
 (0)