(value: Optional[Iterable[int]])
| 453 | return None |
| 454 | |
| 455 | def process(value: Optional[Iterable[int]]) -> Optional[int]: |
| 456 | if value is not None: |
| 457 | v = 0 |
| 458 | for i in value: |
| 459 | v = v << 8 | i |
| 460 | return v |
| 461 | return value |
| 462 | |
| 463 | return process |
| 464 |
no outgoing calls
no test coverage detected