Sebastian Wehrmann
Sebastian Wehrmann
This should fix the error: ``` … weatherData.default_station_data = weatherData.stationByName(station_name) for module, moduleData in weatherData.lastData(exclude=3600).items(): … ```
Any updates on this one? I need to set some helpdesk attributes during ticket creation (mainly `helpdesk_ticket_attributes_source` and `helpdesk_customer_id`). `helpdesk_customer_id` involves searching the customers for an existing customer (by email)...
Yea, I noticed that. Is that a "its not working at all" or just a "the api is not consistent enough to get it right on our side" thing. Unfortunately,...
> Regarding the question about adding a contact to a ticket, I think it's covered by the docs, have a look at https://www.redmineup.com/pages/help/helpdesk/rest-api-create-ticket. You have to add both issue and...
So, am I right that we actually have the ability to create an issue (via the base redmine api) and to manage contacts (via pro edition and CRM Plugin), but...
IMO this was introduced with the fix for #117. I don't know the intention of the fix, why `byte` should be `text` type, but the way it's implemented fails with...
Meanwhile one can easily fix this with a monkeypatch 🙈 ``` import openapi_core.unmarshalling.schemas.util def new_format_byte(value, encoding='utf8'): return b64decode(value) openapi_core.unmarshalling.schemas.util.format_byte = new_format_byte ```
As a result of merging https://github.com/giampaolo/psutil/pull/2040 and releasing MacOS M1 packages, this is now solved for me. Thank you! ``` Collecting psutil Downloading psutil-5.9.3-cp39-cp39-macosx_11_0_arm64.whl (243 kB) |████████████████████████████████| 243 kB 1.9...
Works like a charm. Thanks a lot! The docs can be found here: https://python-redmine.com/resources/ticket.html
Me, too. Any chance this gets merged someday?