Attention is currently required from: dexter.
Patch set 1:Code-Review -1
2 comments:
File pySim/ara_m.py:
Patch Set #1, Line 430: if res_do:
Too much nesting here, this is making the code harder to read/edit.
You can reduce it by inversing this condition and returning early.
You can also add a function for the inner loop body.
Patch Set #1, Line 432: if 'response_all_ref_ar_do' in res_do_dict and res_do_dict['response_all_ref_ar_do']:
```
if not res_do_dict.get('response_all_ref_ar_do', False):
continue
```
To view, visit change 37643. To unsubscribe, or for help writing mail filters, visit settings.