Fixed links to github docs. [#2009]

This commit is contained in:
Mark Walker
2021-07-31 02:34:34 +01:00
parent 83d6e0719c
commit ab36b89aa5
45 changed files with 307 additions and 307 deletions
+3 -3
View File
@@ -28,7 +28,7 @@ from . import Consts
class Project(github.GithubObject.CompletableGithubObject):
"""
This class represents Projects. The reference can be found here http://docs.github.com/en/rest/reference/projects
This class represents Projects. The reference can be found here https://docs.github.com/en/rest/reference/projects
"""
def __repr__(self):
@@ -194,7 +194,7 @@ class Project(github.GithubObject.CompletableGithubObject):
def get_columns(self):
"""
:calls: `GET /projects/{project_id}/columns <https://docs.github.com/en/rest/reference/projects/columns#list-project-columns>`_
:calls: `GET /projects/{project_id}/columns <https://docs.github.com/en/rest/reference/projects#list-project-columns>`_
:rtype: :class:`github.PaginatedList.PaginatedList` of :class:`github.ProjectColumn.ProjectColumn`
"""
@@ -208,7 +208,7 @@ class Project(github.GithubObject.CompletableGithubObject):
def create_column(self, name):
"""
calls: `POST /projects/{project_id}/columns <https://docs.github.com/en/rest/reference/projects/columns#create-a-project-column>`_
calls: `POST /projects/{project_id}/columns <https://docs.github.com/en/rest/reference/projects#create-a-project-column>`_
:param name: string
"""
assert isinstance(name, str), name