Skip to content

Commit 5f12cb4

Browse files
authored
Merge pull request #36 from Frameio/DEVREL-299-add-missing-functions-to-python-client
Remove duplicate client.get_project() method
2 parents e2dbf1d + c4180fb commit 5f12cb4

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

frameioclient/client.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -173,16 +173,6 @@ def create_project(self, team_id, **kwargs):
173173
endpoint = '/teams/{}/projects'.format(team_id)
174174
return self._api_call('post', endpoint, payload=kwargs)
175175

176-
def get_project(self, project_id):
177-
"""
178-
Get a project by id.
179-
180-
:Args:
181-
project_id (string): The project id.
182-
"""
183-
endpoint = '/projects/{}'.format(project_id)
184-
return self._api_call('get', endpoint)
185-
186176
def get_asset(self, asset_id):
187177
"""
188178
Get an asset by id.

0 commit comments

Comments
 (0)