Jelle
Jelle
This seems to fix it (utils.py): ```diff - lines = f.readlines() - tree = ast.parse('\n'.join(lines)) + file_data = f.read() + lines = file_data.splitlines() + tree = ast.parse(file_data) ```
i have the same problem.
I am not able to provide an example anymore, since we moved to the vue3 stack in the meantime.
I have this problem as well. Via ```python endpoint.NotificationFilterUrlUser.create(notification_filters=[NotificationFilterUrl("MUTATION", "https://test.com")]) ```