(state)
| 767 | apps = new_apps |
| 768 | |
| 769 | def get_model_a(state): |
| 770 | return [ |
| 771 | mod for mod in state.apps.get_models() if mod._meta.model_name == "a" |
| 772 | ][0] |
| 773 | |
| 774 | project_state = ProjectState() |
| 775 | project_state.add_model(ModelState.from_model(A)) |
nothing calls this directly
no test coverage detected