Skip to content

Commit b47c6c8

Browse files
committed
black formatting
1 parent 6194373 commit b47c6c8

File tree

1 file changed

+5
-6
lines changed
  • atlassian/bitbucket/cloud/common

1 file changed

+5
-6
lines changed

atlassian/bitbucket/cloud/common/users.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,25 @@ def __init__(self, url, data, *args, **kwargs):
77

88
@property
99
def display_name(self):
10-
""" Display name used by Bitbucket Cloud """
10+
"""Display name used by Bitbucket Cloud"""
1111
return str(self.get_data("display_name"))
1212

1313
@property
1414
def nickname(self):
15-
""" Username used by Bitbucket Cloud """
15+
"""Username used by Bitbucket Cloud"""
1616
return self.get_data("nickname")
1717

1818
@property
1919
def account_id(self):
20-
""" Account id used by Bitbucket Cloud """
20+
"""Account id used by Bitbucket Cloud"""
2121
return self.get_data("account_id")
2222

2323
@property
2424
def uuid(self):
25-
""" User id used by Bitbucket Cloud """
25+
"""User id used by Bitbucket Cloud"""
2626
return self.get_data("uuid")
2727

2828

29-
3029
class Participant(BitbucketCloudBase):
3130
ROLE_REVIEWER = "REVIEWER"
3231
ROLE_PARTICIPANT = "PARTICIPANT"
@@ -71,5 +70,5 @@ def participated_on(self):
7170

7271
@property
7372
def avatar(self):
74-
""" URL to user avatar on Bitbucket Cloud """
73+
"""URL to user avatar on Bitbucket Cloud"""
7574
return self.get_data("links")["avatar"]["href"]

0 commit comments

Comments
 (0)