Skip to content

Commit f40b1f8

Browse files
committed
final changes done
1 parent 565f7f0 commit f40b1f8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

website/models.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,6 @@ class OrganisationType(Enum):
116116
TEAM = "team"
117117

118118

119-
120-
121119
class Organization(models.Model):
122120
admin = models.ForeignKey(User, null=True, blank=True, on_delete=models.CASCADE)
123121
managers = models.ManyToManyField(User, related_name="user_organizations", blank=True)
@@ -142,7 +140,7 @@ class Organization(models.Model):
142140
license = models.CharField(max_length=100, blank=True, null=True)
143141
categories = models.JSONField(default=list)
144142
contributor_guidance_url = models.URLField(blank=True, null=True)
145-
tech_tags = models.JSONField(default=list)
143+
tech_tags = models.JSONField(default=list)
146144
topic_tags = models.JSONField(default=list)
147145
source_code = models.URLField(blank=True, null=True)
148146
ideas_link = models.URLField(blank=True, null=True)

0 commit comments

Comments
 (0)