Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

formatが間違ってたので直してあげたよ! #3482 #3483

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
from typing import Callable, List

import discord
import slack_bolt
import websockets
from flask import Flask, jsonify, request
from markupsafe import escape
from misskey import Misskey
from requests.exceptions import ReadTimeout
import slack_bolt
from slack_bolt.adapter.flask import SlackRequestHandler

import slackbot_settings as conf
Expand Down Expand Up @@ -109,7 +109,9 @@ def on_app_mention(body):
tpe.submit(
analyze_slack_message(block_element_elements[1:]),
SlackClient(
slack_app.client, channel, block_element_elements[0]["user_id"]
slack_app.client,
channel,
block_element_elements[0]["user_id"],
),
)

Expand Down