(attrs1, attrs2)
| 416 | print('finding item replacements') |
| 417 | |
| 418 | def compareAttrs(attrs1, attrs2): |
| 419 | # Consider items as different if they have no attrs |
| 420 | if len(attrs1) == 0 and len(attrs2) == 0: |
| 421 | return False |
| 422 | if set(attrs1) != set(attrs2): |
| 423 | return False |
| 424 | if all(attrs1[aid] == attrs2[aid] for aid in attrs1): |
| 425 | return True |
| 426 | return False |
| 427 | |
| 428 | skillReqAttribs = { |
| 429 | 182: 277, |
no outgoing calls
no test coverage detected