Skip to content

Commit aaae9a7

Browse files
NicoFeliceEUROTECHstanislavulrych
authored andcommitted
params on function get_timesheet_approvals
On return of the function get_timesheet_approvals missing params=params (was only params). This returns on "get" function params as "None"
1 parent cd1c96e commit aaae9a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tempoapiclient/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def get_timesheet_approvals(self, dateFrom=None, dateTo=None, userId=None, teamI
250250
url += f"/user/{userId}"
251251
elif teamId:
252252
url += f"/team/{teamId}"
253-
return self.get(url, params)
253+
return self.get(url, params=params)
254254

255255
# User Schedule
256256

0 commit comments

Comments
 (0)