Skip to content

Commit 704a39d

Browse files
committed
Removed trailing commas
1 parent e61b0ca commit 704a39d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

frameioclient/service/projects.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def create(self, team_id, **kwargs):
1313
Example::
1414
client.projects.create(
1515
team_id="123",
16-
name="My Awesome Project",
16+
name="My Awesome Project"
1717
)
1818
"""
1919
endpoint = '/teams/{}/projects'.format(team_id)
@@ -28,7 +28,7 @@ def get(self, project_id):
2828
2929
Example::
3030
client.project.get(
31-
project_id="123",
31+
project_id="123"
3232
)
3333
3434
"""
@@ -78,7 +78,7 @@ def add_collaborator(self, project_id, email):
7878
Example::
7979
client.projects.add_collaborator(
8080
project_id="123",
81-
email="",
81+
email="janedoe@frame.io",
8282
)
8383
"""
8484
payload = {"email": email}
@@ -96,7 +96,7 @@ def remove_collaborator(self, project_id, email):
9696
Example::
9797
client.projects.remove_collaborator(
9898
project_id="123",
99-
email="",
99+
email="janedoe@frame.io"
100100
)
101101
"""
102102
endpoint = '/projects/{}/collaborators/_?email={}'.format(project_id, email)

0 commit comments

Comments
 (0)