(_lst: list | tuple | None, _idx: int)
| 319 | _has_next = json.loads(_has_next) |
| 320 | |
| 321 | def get(_lst: list | tuple | None, _idx: int): |
| 322 | if _lst is None: |
| 323 | return None |
| 324 | |
| 325 | if len(_lst) <= _idx: |
| 326 | return None |
| 327 | else: |
| 328 | return _lst[_idx] |
| 329 | |
| 330 | if _argument_ids is None: |
| 331 | _arguments = None |
no outgoing calls
no test coverage detected