aboutsummaryrefslogtreecommitdiffstats
path: root/github3/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'github3/core.py')
-rw-r--r--github3/core.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/github3/core.py b/github3/core.py
index 488f81d..0fdffd4 100644
--- a/github3/core.py
+++ b/github3/core.py
@@ -16,9 +16,15 @@ from .api import Github, settings
def no_auth():
"""Returns an un-authenticated Github object."""
- pass
+
+ gh = Github()
+
+ return gh
def basic_auth():
"""Returns an authenticated Github object, via HTTP Basic."""
- pass \ No newline at end of file
+
+ gh = Github()
+
+ return gh \ No newline at end of file