Commit 7c7ece7b3269a1ca4e51a09bb4df759110544910
1 parent
8a7ec6c9
Exists in
dev
fix spacing
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/core/pyros_django/user_mgmt/models.py
... | ... | @@ -475,7 +475,7 @@ class ScientificProgram(models.Model): |
475 | 475 | science_theme = models.ForeignKey(ScienceTheme, on_delete=models.DO_NOTHING, related_name="scientific_program_theme", default=1) |
476 | 476 | is_auto_validated = models.BooleanField(default=False) |
477 | 477 | objects = ScientificProgramManager() |
478 | - quota = models.ForeignKey(Quota, on_delete=models.DO_NOTHING,related_name="scientific_program_quotas", blank=True, null=True) | |
478 | + quota = models.ForeignKey(Quota, on_delete=models.DO_NOTHING, related_name="scientific_program_quotas", blank=True, null=True) | |
479 | 479 | quota_f = models.FloatField( |
480 | 480 | validators=[MinValueValidator(0), MaxValueValidator(1)], blank=True, null=True) |
481 | 481 | ... | ... |