(model: OuterModel)
| 150 | |
| 151 | |
| 152 | def complex_args_function(model: OuterModel) -> str: |
| 153 | return f"{model.inner.a}, {model.inner.b}, {model.foo['a']}, {model.foo['b']}" |
| 154 | |
| 155 | |
| 156 | def test_nested_data_function(): |
no outgoing calls
no test coverage detected