(arg)
| 385 | |
| 386 | |
| 387 | def _as_variables_or_variable(arg) -> Variable | tuple[Variable]: |
| 388 | try: |
| 389 | return arg.variables |
| 390 | except AttributeError: |
| 391 | try: |
| 392 | return arg.variable |
| 393 | except AttributeError: |
| 394 | return arg |
| 395 | |
| 396 | |
| 397 | def _unpack_dict_tuples( |
no outgoing calls
no test coverage detected
searching dependent graphs…