Fixed property name (#1085)
This commit is contained in:
parent
c5cd659f63
commit
1d2f231146
1 changed files with 2 additions and 2 deletions
|
|
@ -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")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue