Skip to content

Commit

Permalink
Temporarily remove fillable objects from meta link match requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen committed Feb 22, 2024
1 parent 860f405 commit 2d5d051
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bddl/knowledge_base/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 2d5d051

Please sign in to comment.