Skip to content

Commit

Permalink
chore: Simplify imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Nov 11, 2024
1 parent c8398b6 commit ccae4fe
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions representatives/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

from appconf import AppConf
from django.db import models, transaction
from django.db.models import JSONField
from django.template.defaultfilters import slugify
from django.urls import reverse

Expand Down Expand Up @@ -272,8 +271,8 @@ class BaseRepresentative(models.Model):
photo_url = models.URLField(blank=True, max_length=2048)
district_id = models.CharField(blank=True, max_length=200)
gender = models.CharField(blank=True, max_length=1, choices=(('F', 'Female'), ('M', 'Male')))
offices = JSONField(default=list)
extra = JSONField(default=dict)
offices = models.JSONField(default=list)
extra = models.JSONField(default=dict)

class Meta:
abstract = True
Expand Down

0 comments on commit ccae4fe

Please sign in to comment.