-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
"string indices must be integers" in invoice table #37
Comments
(please note that I am not from Stitch nor I am a maintainer of this project)
Also, it is quite difficult to debug as I don't know which version of the code is deployed in Stitch and there is not enough context from your bug report. Would you be able to run this tap directly (without using Stitch) to see if you have the problem? This would be the best way to debug. Otherwise I would suggest to contact Stitch support. |
@cirotix Hello again, I just get addition logs from stitch for more detail
which they said, the error is return from this function
Note: they use last version which version is tap-chargify version 0.0.15 |
Please reply to the question I asked in my previous comment, otherwise I can't help. |
@cirotix sorry, I think it should not be classical invoice.
i didn't see anything like transactions in dashboard, it seperate to another page, here is my dashboard ui |
Afaik the current code is not compatible with relationship invoices. |
@cirotix Thanks for information, I will waiting for update. |
@Nawanop I got the same error message as you had. Did you find a way to solve this? |
All the characters of a string have a unique index . This index specifies the position of each character of the string. TypeError: string indices must be integers means an attempt to access a location within a string using an index that is not an integer. For example, str[hello"] and str[2.1] as indexes. As these are not integers, a TypeError exception is raised. This means that when you’re accessing an iterable object like a string or float value, you must do it using an integer value . Python supports slice notation for any sequential data type like lists, strings , tuples, bytes, bytearrays, and ranges. When working with strings and slice notation, it can happen that a TypeError: string indices must be integers is raised, pointing out that the indices must be integers, even if they obviously are. |
I have extract data using stitchdata, and it throws error as the topic
here is error logs
Thank you, for advance
The text was updated successfully, but these errors were encountered: