Apply black to whole codebase (#1303)

This commit is contained in:
Wan Liuyang
2019-12-10 17:14:33 +08:00
committed by GitHub
parent f8e33620f4
commit 6ceb9e9a15
193 changed files with 9293 additions and 3452 deletions
+2 -4
View File
@@ -36,6 +36,7 @@
################################################################################
from __future__ import absolute_import
import github.GithubObject
@@ -108,10 +109,7 @@ class RepositoryKey(github.GithubObject.CompletableGithubObject):
:calls: `DELETE /repos/:owner/:repo/keys/:id <http://developer.github.com/v3/repos/keys>`_
:rtype: None
"""
headers, data = self._requester.requestJsonAndCheck(
"DELETE",
self.url
)
headers, data = self._requester.requestJsonAndCheck("DELETE", self.url)
def _initAttributes(self):
self._created_at = github.GithubObject.NotSet