Discard changes to autogpt_platform/backend/backend/api/features/store/content_handlers.py

This commit is contained in:
Nicholas Tindle
2026-02-08 19:48:44 -06:00
committed by GitHub
parent 044d5453e2
commit cc41facc79

View File

@@ -254,13 +254,11 @@ class BlockHandler(ContentHandler):
all_blocks = get_blocks()
# Filter out disabled blocks - they're not indexed
enabled_block_ids = []
for block_id, block_cls in all_blocks.items():
try:
if not block_cls().disabled:
enabled_block_ids.append(block_id)
except Exception as e:
logger.warning(f"Failed to instantiate block {block_id}: {e}")
enabled_block_ids = [
block_id
for block_id, block_cls in all_blocks.items()
if not block_cls().disabled
]
total_blocks = len(enabled_block_ids)
if total_blocks == 0: