Set line length to 120 characters (#2599)

This commit is contained in:
Jirka Borovec
2023-07-13 17:37:20 +02:00
committed by GitHub
parent de80ff4b91
commit 13e178a3ab
192 changed files with 1455 additions and 4433 deletions
+2 -6
View File
@@ -97,9 +97,7 @@ class ProjectColumn(github.GithubObject.CompletableGithubObject):
:rtype: :class:`github.PaginatedList.PaginatedList` of :class:`github.ProjectCard.ProjectCard`
:param archived_state: string
"""
assert archived_state is github.GithubObject.NotSet or isinstance(
archived_state, str
), archived_state
assert archived_state is github.GithubObject.NotSet or isinstance(archived_state, str), archived_state
url_parameters = dict()
if archived_state is not github.GithubObject.NotSet:
@@ -141,9 +139,7 @@ class ProjectColumn(github.GithubObject.CompletableGithubObject):
headers, data = self._requester.requestJsonAndCheck(
"POST", f"{self.url}/cards", headers=import_header, input=post_parameters
)
return github.ProjectCard.ProjectCard(
self._requester, headers, data, completed=True
)
return github.ProjectCard.ProjectCard(self._requester, headers, data, completed=True)
def move(self, position):
"""