style: Apply ruff formatting - add trailing commas
- Add trailing commas to super().__init__ calls in SlackMCPRAG and TwitterMCPRAG - Fixes ruff format pre-commit hook requirements
This commit is contained in:
@@ -28,7 +28,7 @@ class SlackMCPRAG(BaseRAGExample):
|
|||||||
super().__init__(
|
super().__init__(
|
||||||
name="Slack MCP RAG",
|
name="Slack MCP RAG",
|
||||||
description="RAG application for Slack messages via MCP servers",
|
description="RAG application for Slack messages via MCP servers",
|
||||||
default_index_name="slack_messages"
|
default_index_name="slack_messages",
|
||||||
)
|
)
|
||||||
|
|
||||||
def _add_specific_arguments(self, parser: argparse.ArgumentParser):
|
def _add_specific_arguments(self, parser: argparse.ArgumentParser):
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ class TwitterMCPRAG(BaseRAGExample):
|
|||||||
super().__init__(
|
super().__init__(
|
||||||
name="Twitter MCP RAG",
|
name="Twitter MCP RAG",
|
||||||
description="RAG application for Twitter bookmarks via MCP servers",
|
description="RAG application for Twitter bookmarks via MCP servers",
|
||||||
default_index_name="twitter_bookmarks"
|
default_index_name="twitter_bookmarks",
|
||||||
)
|
)
|
||||||
|
|
||||||
def _add_specific_arguments(self, parser: argparse.ArgumentParser):
|
def _add_specific_arguments(self, parser: argparse.ArgumentParser):
|
||||||
|
|||||||
Reference in New Issue
Block a user