From 7c7ece7b3269a1ca4e51a09bb4df759110544910 Mon Sep 17 00:00:00 2001 From: Etienne Pallier Date: Thu, 12 Oct 2023 14:32:10 +0200 Subject: [PATCH] fix spacing --- src/core/pyros_django/user_mgmt/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/pyros_django/user_mgmt/models.py b/src/core/pyros_django/user_mgmt/models.py index 41e006b..1da5a2f 100644 --- a/src/core/pyros_django/user_mgmt/models.py +++ b/src/core/pyros_django/user_mgmt/models.py @@ -475,7 +475,7 @@ class ScientificProgram(models.Model): science_theme = models.ForeignKey(ScienceTheme, on_delete=models.DO_NOTHING, related_name="scientific_program_theme", default=1) is_auto_validated = models.BooleanField(default=False) objects = ScientificProgramManager() - quota = models.ForeignKey(Quota, on_delete=models.DO_NOTHING,related_name="scientific_program_quotas", blank=True, null=True) + quota = models.ForeignKey(Quota, on_delete=models.DO_NOTHING, related_name="scientific_program_quotas", blank=True, null=True) quota_f = models.FloatField( validators=[MinValueValidator(0), MaxValueValidator(1)], blank=True, null=True) -- libgit2 0.21.2