Closed
Description
The parameter name from
in the Jira.tempo_4_timesheets_find_worklogs
method call (atlassian/jira.py:4118) causes a syntax error because from
is a keyword in Python and thus cannot be used as parameter name:
>>> from atlassian import Jira
>>> j = Jira('https://localhost/')
>>> j.tempo_4_timesheets_find_worklogs(from='2023-01-01', to='2023-12-31')
File "<stdin>", line 1
j.tempo_4_timesheets_find_worklogs(from='2023-01-01', to='2023-12-31')
^^^^
SyntaxError: invalid syntax
The parameter needs to be renamed.
Metadata
Metadata
Assignees
Labels
No labels