Hello all,
I currently have an experiment created in builder on my local machine, which I will soon be trying to move online. As far as I understand, the code elements will be translated to JS when I move online, so I am carefully watching the Auto–> JS window of each code element.
When I initialized a dictionary to keep track of my experiment conditions, e.g.:
# create dictionaries for condition effects
conditionRecall = {k:[] for k in pitchTypes}
… I got /* Syntax Error: Fix Python Code*/ in the JS side. However, the experiment runs normally and the dictionary seems to be working fine on my local machine.
Does the syntax error mean that I will have problems when trying to go online? Is there anything I can change? Thanks in advance