Fixed property name (#1085)
This commit is contained in:
@@ -55,9 +55,9 @@ class DocumentConverter:
|
|||||||
return self._priority
|
return self._priority
|
||||||
|
|
||||||
@priority.setter
|
@priority.setter
|
||||||
def radius(self, value: float):
|
def priority(self, value: float):
|
||||||
self._priority = value
|
self._priority = value
|
||||||
|
|
||||||
@priority.deleter
|
@priority.deleter
|
||||||
def radius(self):
|
def priority(self):
|
||||||
raise AttributeError("Cannot delete the priority attribute")
|
raise AttributeError("Cannot delete the priority attribute")
|
||||||
|
|||||||
Reference in New Issue
Block a user