Hi There,
OK I see the problem. Try changing your integer values to strings i.e.
rather than
if expInfo['Condition'] == 1:
try
if expInfo['Condition'] == '1':
Hope this works
Becca
PS. for future when debugging these you can check a type by adding a code component and calling type on the variable you want to check. In this example print(type(expInfo['Condition']))
returns <class 'str'>
showing this is a string rather than an int (whole number).