We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in complex.py
class DependencyValue(ComplexNullValue): """An item link column value."""
native_type = list native_default = [] def _convert(self, value): try: list_ids = value['linkedPulseIds'] return [int(value['linkedPulseId']) for value in list_ids ] except IndexError: return []
the except needs to also do keyError, monday seems to send back
{ "id": "dependent_on", "text": "", "value": "{\"changed_at\":\"2021-04-28T19:55:53.979Z\"}" },
on a field that has been deleted
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in complex.py
class DependencyValue(ComplexNullValue):
"""An item link column value."""
the except needs to also do keyError, monday seems to send back
on a field that has been deleted
The text was updated successfully, but these errors were encountered: