Skip to content

Commit 73b13e5

Browse files
committed
chore: match js sample app name conventions
1 parent afa1d4d commit 73b13e5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

listeners/assistant/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from slack_bolt import App, Assistant
22

3-
from .assistant_thread_started import start_assistant_thread
4-
from .message import respond_in_assistant_thread
3+
from .assistant_thread_started import assistant_thread_started
4+
from .message import message
55

66

77
# Refer to https://docs.slack.dev/tools/bolt-python/concepts/ai-apps#assistant for more details on the Assistant class

listeners/assistant/assistant_thread_started.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from slack_bolt import Say, SetSuggestedPrompts
55

66

7-
def start_assistant_thread(
7+
def assistant_thread_started(
88
say: Say,
99
set_suggested_prompts: SetSuggestedPrompts,
1010
logger: Logger,

listeners/assistant/message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ..views.feedback_block import create_feedback_block
1010

1111

12-
def respond_in_assistant_thread(
12+
def message(
1313
client: WebClient,
1414
context: BoltContext,
1515
logger: Logger,

0 commit comments

Comments
 (0)