Coverage for backend/core/auxiliary/enums/uiEnums.py: 100%

12 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2025-11-06 23:27 +0000

1from django.db import models 

2 

3class DisplayType(models.TextChoices): 

4 numeric = "numeric" 

5 dropdown = "dropdown" 

6 checkbox = "checkbox" 

7 segmented = "segmented" 

8 text = "text" 

9 numeric_arg = "numeric_arg" 

10 

11class CompoundMode(models.TextChoices): 

12 MolarFraction = "MolarFraction" 

13 MassFraction = "MassFraction" 

14 Empty = ""