Skip to content

Commit fed08f0

Browse files
committed
Polish MR requests
1 parent 2293364 commit fed08f0

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

atlassian/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.3
1+
4.0.4

atlassian/bitbucket/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ def get_users_info(self, user_filter=None, start=0, limit=25):
162162
params["filter"] = user_filter
163163
return self._get_paged(url, params=params)
164164

165-
166165
def get_current_license(self):
167166
"""
168167
Retrieves details about the current license, as well as the current status of the system with

atlassian/rest_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ def __init__(
9494
max_backoff_retries: int = 1000,
9595
backoff_factor=1.0,
9696
backoff_jitter=1.0,
97-
retry_with_header=True,
98-
header=None
97+
retry_with_header=True,
98+
header=None,
9999
):
100100
"""
101101
init function for the AtlassianRestAPI object.
@@ -214,7 +214,7 @@ def _create_token_session(self, token: str) -> None:
214214
self._update_header("Authorization", f"Bearer {token.strip()}")
215215

216216
def _create_header_session(self, header: dict) -> None:
217-
self._session.headers.update(header)
217+
self._session.headers.update(header)
218218

219219
def _create_kerberos_session(self, _):
220220
from requests_kerberos import OPTIONAL, HTTPKerberosAuth

0 commit comments

Comments
 (0)