We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fabric_get_patterns
1 parent 1df8a8f commit e6fcba1Copy full SHA for e6fcba1
src/fabric_mcp/core.py
@@ -196,12 +196,7 @@ def fabric_list_patterns(self) -> list[str]:
196
197
patterns = cast(list[str], response_data)
198
199
- # Ensure all items are strings
200
- validated_patterns: list[str] = []
201
- for item in patterns:
202
- validated_patterns.append(item)
203
-
204
- return validated_patterns
+ return patterns
205
206
def fabric_get_pattern_details(self, pattern_name: str) -> dict[str, str]:
207
"""Retrieve detailed information for a specific Fabric pattern."""
0 commit comments