Fixed property name (#1085)

This commit is contained in:
afourney
2025-03-03 09:45:36 -08:00
committed by GitHub
parent c5cd659f63
commit 1d2f231146

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")