You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had the same issue. Needed to work on the client.py and models.py and did the following changes manually on my venv:
in client.py, replaced all 'priority: int = None' to 'priority: str = None' and 'priority: int' to 'priority: str'
in models.py, replaced the 'priority: Any = None' to 'priority: str = None', 'priority: Any' to 'priority: str' and in the Task Class 'priority: Optional[Any] = None' to 'priority: Optional[Priority] = None'
In my program I had to update the code to use the objects correctly and now I have a syncer that gets tasks from Jira down to Clickup without any issue.
When I set Priority in Clickup dashboard (e.g. High), I get this error
This is a part of the result as json from postman and clickup api
as you see, the Priority is a JSON object, not an int.
So what is the solution?
The text was updated successfully, but these errors were encountered: