Could someone take a look at the following nested dictionaries? it is throwing a SyntaxError.
User_Decode_Table = {
{
"Rigid":
{
'Right Half Swing' : {
"DIR__Value": 1,
"Toy_Selc" : 0
}
},
{
'Right Full Swing': {
"DIR_Value":1,
"Toy_Selc":1
}
},
{
'Left Half Swing':{
"DIR_Value":1,
"Toy_Selc":(0)
}
},
{
'Left Full Swing':{
"DIR_Value":1,
"Toy_Selc":(1)
}
},
}
{
"Flexible": {
'Right' {
"DIR_Value": 1,
"Toy_Selc": 2
}
},
{
'Left': {
"DIR_Value": 0,
"Toy_Selc": 2
}
},
{
'Top' : {
"DIR_Value": 0,
"Toy_Selc": 3
}
}
}
}