Skip to content

Commit

Permalink
Fix docs building (#1730)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Sep 7, 2023
1 parent f24a57d commit 6adad9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ tests/test-reports-*/*
/.vscode
/node_modules
.mypy_cache/
.DS_Store
.envrc
5 changes: 2 additions & 3 deletions jira/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,7 @@ def __call__(self, request: requests.PreparedRequest):
def init_session(self):
"""Initialise the Session object's cookies, so we can use the session cookie.
Raises:
HTTPError: if the post returns an erroring http response
Raises HTTPError if the post returns an erroring http response
"""
username, password = self.__auth
authentication_data = {"username": username, "password": password}
Expand Down Expand Up @@ -4427,7 +4426,7 @@ def create_project(
will fetch the one named 'Default' or the first category returned.
notificationScheme (Optional[int]): Determines the notification scheme to use.
categoryId (Optional[int]): Same as projectCategory. Can be used interchangeably.
url (Optional[string]): A link to information about the project, such as documentation.
url (Optional[str]): A link to information about the project, such as documentation.
Returns:
Union[bool,int]: Should evaluate to False if it fails otherwise it will be the new project id.
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ extras =
cli
docs
# changedir=docs
usedevelop = False
usedevelop = True
skipdist = False
setenv =
PYTHONHTTPSVERIFY=0
Expand Down

0 comments on commit 6adad9c

Please sign in to comment.