Get the element that corresponds to the first argument passed to the function
(args: list[list[T]])
| 43 | |
| 44 | |
| 45 | def get_first_arg(args: list[list[T]]) -> T | None: |
| 46 | """Get the element that corresponds to the first argument passed to the function""" |
| 47 | if args and args[0]: |
| 48 | return args[0][0] |
| 49 | return None |
| 50 | |
| 51 | |
| 52 | def make_fake_register_class_instance( |
no outgoing calls
no test coverage detected
searching dependent graphs…