Skip to content

Commit

Permalink
fix job list method (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalii-bulyzhyn committed Nov 14, 2022
1 parent 6fa9187 commit 4ccab32
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sdk/diffgram/job/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,9 @@ def list(self,
limit = 100,
status = ["All"],
name = None,
tags = []):
tags = [],
page_number = 1,
):
"""
:param limit:
Expand Down Expand Up @@ -270,7 +272,8 @@ def list(self,
"search": name,
"status": status,
"tag_list": tag_id_list,
"project_string_id": self.client.project_string_id
"project_string_id": self.client.project_string_id,
"page_number": page_number
}
}

Expand Down

0 comments on commit 4ccab32

Please sign in to comment.