(attrs, attr_type)
| 199 | return result |
| 200 | |
| 201 | def _get_attr(attrs, attr_type): |
| 202 | for t, v in attrs: |
| 203 | if t == attr_type: |
| 204 | return v |
| 205 | return None |
| 206 | |
| 207 | def _get_attrs(attrs, attr_type): |
| 208 | return [v for t, v in attrs if t == attr_type] |
no outgoing calls
no test coverage detected