kopia lustrzana https://gitlab.com/jaywink/federation
Fix _allowed_children check
rodzic
c997a1a2b4
commit
7e93dc3da3
|
@ -104,7 +104,7 @@ class BaseEntity:
|
||||||
def _validate_children(self):
|
def _validate_children(self):
|
||||||
"""Check that the children we have are allowed here."""
|
"""Check that the children we have are allowed here."""
|
||||||
for child in self._children:
|
for child in self._children:
|
||||||
if child.__class__ not in self._allowed_children:
|
if not isinstance(child, self._allowed_children):
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
"Child %s is not allowed as a children for this %s type entity." % (
|
"Child %s is not allowed as a children for this %s type entity." % (
|
||||||
child, self.__class__
|
child, self.__class__
|
||||||
|
|
Ładowanie…
Reference in New Issue