Skip to content

Commit 5a578dc

Browse files
committed
formatting
1 parent d28504e commit 5a578dc

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

atlassian/rest_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def raise_for_status(self, response):
394394
try:
395395
j = response.json()
396396
if self.url == "https://api.atlassian.com":
397-
error_msg = "\n".join([k + ": " + v for k, v in j.items()])
397+
error_msg = "\n".join([k + ": " + v for k, v in j.items()])
398398
else:
399399
error_msg = "\n".join(
400400
j.get("errorMessages", list()) + [k + ": " + v for k, v in j.get("errors", dict()).items()]

docs/cloud_admin.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,3 @@ CloudAdminUsers
1717
1818
# Returns information about a single Atlassian account by ID
1919
cloud_admin_users.get_profile(account_id)
20-
21-

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Add a connection:
232232
admin-api-key=admin-api-key)
233233
234234
cloud_admin_users = CloudAdminUsers(
235-
admin-api-key=admin-api-key)
235+
admin-api-key=admin-api-key)
236236
237237
.. toctree::
238238
:maxdepth: 2

0 commit comments

Comments
 (0)