From 2d5d051cb0049c2dad09d77397ecf8db00c308be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cem=20G=C3=B6kmen?= <1408354+cgokmen@users.noreply.github.com> Date: Thu, 22 Feb 2024 12:36:59 -0800 Subject: [PATCH] Temporarily remove fillable objects from meta link match requirement --- bddl/knowledge_base/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bddl/knowledge_base/models.py b/bddl/knowledge_base/models.py index ffa5baaf..832f74b4 100644 --- a/bddl/knowledge_base/models.py +++ b/bddl/knowledge_base/models.py @@ -303,8 +303,10 @@ def required_meta_links(self) -> Set[str]: continue required_links.add('heatsource') - if 'fillable' in properties: - required_links.add('fillable') + # This is left out because the fillable annotations are currently automatically generated + # TODO: Re-enable this after the fillable annotations have been backported. + # if 'fillable' in properties: + # required_links.add('fillable') if 'toggleable' in properties: required_links.add('togglebutton')