(project: Project)
| 433 | |
| 434 | @pytest.fixture() |
| 435 | def another_segment(project: Project) -> Segment: |
| 436 | return Segment.objects.create(name="another_segment", project=project) # type: ignore[no-any-return] |
| 437 | |
| 438 | |
| 439 | @pytest.fixture() |
nothing calls this directly
no test coverage detected
searching dependent graphs…