2033:4b99609f6a87 | 2034:8de0fc1f7fef |
---|---|
547 if key == "src": | 547 if key == "src": |
548 src = int(value) | 548 src = int(value) |
549 elif key == "dst": | 549 elif key == "dst": |
550 dst = int(value) | 550 dst = int(value) |
551 elif key == "type": | 551 elif key == "type": |
552 assocType = value | 552 assocType = int(value) |
553 elif key == "topToBottom": | 553 elif key == "topToBottom": |
554 topToBottom = Utilities.toBool(value) | 554 topToBottom = Utilities.toBool(value) |
555 | 555 |
556 return src, dst, assocType, topToBottom | 556 return src, dst, assocType, topToBottom |