From 3f9b3f9689705f14f511805afbddf323b181175d Mon Sep 17 00:00:00 2001 From: Christopher Broderick Date: Wed, 14 May 2025 09:16:34 +0100 Subject: [PATCH] Remove ccommented out triaql code. --- helpdesk/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/helpdesk/models.py b/helpdesk/models.py index f1330d8a..11b7cdd7 100644 --- a/helpdesk/models.py +++ b/helpdesk/models.py @@ -2122,8 +2122,6 @@ class CustomField(models.Model): attributes["max_digits"] = self.max_length elif self.data_type == "list": attributes["choices"] = self.get_choices() - # elif self.data_type == "datetime": - # attributes["default_timezone"] = getattr(settings, "DEFAULT_TIMEZONE", "UTC") try: return customfield_to_api_field_dict[self.data_type](**attributes)