Skip to content

Commit

Permalink
Removes unnecessary field arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwils committed Jan 15, 2025
1 parent 6a4b138 commit a974031
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions canvas_sdk/v1/data/patient.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,11 @@ class Meta:
postal_code = models.CharField()
use = models.CharField(choices=AddressUse.choices)
type = models.CharField(choices=AddressType.choices)
longitude = models.FloatField(null=True, default=None, blank=True)
latitude = models.FloatField(null=True, default=None, blank=True)
start = models.DateField(null=True, blank=True)
end = models.DateField(null=True, blank=True)
country = models.CharField(max_length=255)
longitude = models.FloatField()
latitude = models.FloatField()
start = models.DateField()
end = models.DateField()
country = models.CharField()
state = models.CharField(choices=AddressState.choices)
patient = models.ForeignKey(Patient, on_delete=models.DO_NOTHING)

Expand Down

0 comments on commit a974031

Please sign in to comment.