From 703d39ebd69360025ebad2a40d2093b71e690a9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Sat, 17 Aug 2024 17:16:01 +0200 Subject: [PATCH] turn a comment into a todo --- src/c3nav/mapdata/models/geometry/space.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c3nav/mapdata/models/geometry/space.py b/src/c3nav/mapdata/models/geometry/space.py index 80b6cdee..798a1329 100644 --- a/src/c3nav/mapdata/models/geometry/space.py +++ b/src/c3nav/mapdata/models/geometry/space.py @@ -461,7 +461,7 @@ class BeaconMeasurement(SpaceGeometryMixin, models.Model): author = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.SET_NULL, null=True, blank=True, verbose_name=_('author')) comment = models.TextField(null=True, blank=True, verbose_name=_('comment')) - data = models.JSONField(_('Measurement list'), default=dict) # would be nice if this used pydantic + data = models.JSONField(_('Measurement list'), default=dict) # todo: would be nice if this used pydantic class Meta: verbose_name = _('Beacon Measurement')