error showing now " List of pairs to dict: the list [{"Name":"ghea"}] is not a well-formed list of pairs Note: You will not see another error reported for 5 seconds."
ive been working on this for a few days and cannot seem to get around this.
i have 42 text fields persist so im saving them to a keys, then the keys to a list, and then the list to TinyDB. the TinyDB is popultated with the text.
i am able to get the text from the TinyDB but when i try to pass the text into a new variable empty dictionary, i get the error.
it seems that my blocks showing error were working correctly but the blocks where the TinyDB were saved were at issue.
during my debugging i broke the edit procedure into several smaller procedures. i moved them back into the main routine cleaning up but that didnt resolve issue.
the save procedure is where i resolved the issue, and that came from using a key for validating rather than its counterpart text field. the keys are cleared out in my code to prevent orphans. all of this code is reused over with different items in a list so my list of lists of lists of lists is becoming mind boggling
this may be a good point at which ta poll if what im doing is effective to manage my data
to clarify i will use user inputs as entry by the user of the app and not coded in. programmer writes the info that cannot be changed after the build
in this app:
user inputs data for each device(about 50 fields)
user inputs multiple devices into a list
nothing difficult there. i originally put the data into the device1DB and device2DB. issue was all my data is showing in all namesDB, even if you rename the DB it all still pools into a single TinyDB, so if i write all the fields to device1DB if overwrites the data that i saved for device2DB.
renaming or giving unique tags to each of the fields for each of the devices was an option, but that seems to be exactly what the dictionary is for.