mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 03:11:09 +00:00
Merge branch 'develop' into topic/UnauthenticatedRateLimitedRequests
This commit is contained in:
+6
-4
@@ -1,3 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2012 Vincent Jacques
|
||||
# vincent@vincent-jacques.net
|
||||
|
||||
@@ -33,14 +35,14 @@ class Github(object):
|
||||
def __init__(self, login_or_token=None, password=None, base_url=DEFAULT_BASE_URL, timeout=DEFAULT_TIMEOUT, client_id=None, client_secret=None):
|
||||
self.__requester = Requester(login_or_token, password, base_url, timeout, client_id, client_secret)
|
||||
|
||||
@property
|
||||
def FIX_REPO_GET_GIT_REF(self):
|
||||
def get_FIX_REPO_GET_GIT_REF(self):
|
||||
return self.__requester.FIX_REPO_GET_GIT_REF
|
||||
|
||||
@FIX_REPO_GET_GIT_REF.setter
|
||||
def FIX_REPO_GET_GIT_REF(self, value):
|
||||
def set_FIX_REPO_GET_GIT_REF(self, value):
|
||||
self.__requester.FIX_REPO_GET_GIT_REF = value
|
||||
|
||||
FIX_REPO_GET_GIT_REF = property(get_FIX_REPO_GET_GIT_REF, set_FIX_REPO_GET_GIT_REF)
|
||||
|
||||
@property
|
||||
def rate_limiting(self):
|
||||
return self.__requester.rate_limiting
|
||||
|
||||
Reference in New Issue
Block a user