in generator/explores/table_explore.py [0:0]
def from_views(views: List[View]) -> Iterator[TableExplore]:
"""Don't generate all possible TableExplores from the views, only generate for ALLOWED_VIEWS."""
for view in views:
if view.view_type == TableView.type:
if view.name in ALLOWED_VIEWS:
yield TableExplore(view.name, {"base_view": view.name})