Fixed property name

This commit is contained in:
Adam Fourney 2025-03-03 09:31:48 -08:00
parent c5cd659f63
commit 57afba40d6

View file

@ -55,9 +55,9 @@ class DocumentConverter:
return self._priority
@priority.setter
def radius(self, value: float):
def priority(self, value: float):
self._priority = value
@priority.deleter
def radius(self):
def priority(self):
raise AttributeError("Cannot delete the priority attribute")