From a974031cacd406a6e6ad176e160534f4c337375a Mon Sep 17 00:00:00 2001 From: Joe Wilson Date: Wed, 15 Jan 2025 15:55:23 -0800 Subject: [PATCH] Removes unnecessary field arguments. --- canvas_sdk/v1/data/patient.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/canvas_sdk/v1/data/patient.py b/canvas_sdk/v1/data/patient.py index e85d6f1f..f0d6def7 100644 --- a/canvas_sdk/v1/data/patient.py +++ b/canvas_sdk/v1/data/patient.py @@ -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)