mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-01 18:31:58 +02:00
[core] Node: hasInternalAttribute does not support groups and lists
hasInternalAttribute() should not support more cases than internalAttribute()
This commit is contained in:
parent
311ab9cb40
commit
25c12bbc51
1 changed files with 0 additions and 3 deletions
|
@ -629,9 +629,6 @@ class BaseNode(BaseObject):
|
|||
|
||||
@Slot(str, result=bool)
|
||||
def hasInternalAttribute(self, name):
|
||||
if "[" in name or "." in name:
|
||||
p = self.attributeRE.findall(name)
|
||||
return p[0][0] in self._internalAttributes.keys() or p[0][1] in self._internalAttributes.keys()
|
||||
return name in self._internalAttributes.keys()
|
||||
|
||||
def _applyExpr(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue