From 5aadcccb2c1cfc176dba95c05018cad74da5b696 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 7 Mar 2024 10:49:28 -0500 Subject: [PATCH] doorcontrol: Fix typo in `Door.card_formats` --- doorcontrol/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doorcontrol/models.py b/doorcontrol/models.py index 285e6c5..fb7a15f 100644 --- a/doorcontrol/models.py +++ b/doorcontrol/models.py @@ -34,7 +34,7 @@ class Door(models.Model): @cached_property def card_formats(self): - return self.controller.get_card_formats() + return self.controller.get_cardFormats() @cached_property def schedules_map(self):