(project: Project)
| 374 | |
| 375 | @pytest.fixture() |
| 376 | def system_tag(project: Project) -> Tag: |
| 377 | return Tag.objects.create( # type: ignore[no-any-return] |
| 378 | label="system-tag", project=project, color="#FFFFFF", is_system_tag=True |
| 379 | ) |
| 380 | |
| 381 | |
| 382 | @pytest.fixture() |