This is an automated email from the ASF dual-hosted git repository.

husseinawala pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 4824ca7c5a Slack: Remove parameter `token` in SlackAPIPostOperator's 
docstring (#36121)
4824ca7c5a is described below

commit 4824ca7c5a1e532ae19899f4b0d48c3216c7c871
Author: Brienz boy <150939935+brie...@users.noreply.github.com>
AuthorDate: Fri Dec 8 18:35:04 2023 +0900

    Slack: Remove parameter `token` in SlackAPIPostOperator's docstring (#36121)
---
 airflow/providers/slack/operators/slack.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/airflow/providers/slack/operators/slack.py 
b/airflow/providers/slack/operators/slack.py
index 5a972f9125..4062eb6d55 100644
--- a/airflow/providers/slack/operators/slack.py
+++ b/airflow/providers/slack/operators/slack.py
@@ -104,7 +104,6 @@ class SlackAPIPostOperator(SlackAPIOperator):
         slack = SlackAPIPostOperator(
             task_id="post_hello",
             dag=dag,
-            token="...",
             text="hello there!",
             channel="#random",
         )

Reply via email to