Skip to content

Commit f8c6b89

Browse files
fencing
1 parent 608fc38 commit f8c6b89

38 files changed

Lines changed: 853 additions & 733 deletions

docs/english/reference/adapter/asgi/aiohttp/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export SLACK_BOT_TOKEN=xoxb-***
3434
uvicorn app:api --port 3000 --log-level debug
3535
```
3636

37-
3837
**Arguments**:
3938

4039
- `app` _AsyncApp_ - Your bolt application

docs/english/reference/adapter/asgi/async_handler.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export SLACK_BOT_TOKEN=xoxb-***
3434
uvicorn app:api --port 3000 --log-level debug
3535
```
3636

37-
3837
**Arguments**:
3938

4039
- `app` _AsyncApp_ - Your bolt application

docs/english/reference/adapter/asgi/builtin/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export SLACK_BOT_TOKEN=xoxb-***
3232
uvicorn app:api --port 3000 --log-level debug
3333
```
3434

35-
3635
**Arguments**:
3736

3837
- `app` _App_ - Your bolt application

docs/english/reference/adapter/asgi/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export SLACK_BOT_TOKEN=xoxb-***
4242
uvicorn app:api --port 3000 --log-level debug
4343
```
4444

45-
4645
**Arguments**:
4746

4847
- `app` _App_ - Your bolt application

docs/english/reference/app/async_app.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ def app_factory():
214214
# adev runserver --port 3000 --app-factory app_factory async_app.py
215215
```
216216

217-
218217
**Arguments**:
219218

220219
- `path` _str_ - The path to receive incoming requests from Slack

docs/english/reference/async_app.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,6 @@ def app_factory():
260260
# adev runserver --port 3000 --app-factory app_factory async_app.py
261261
```
262262

263-
264263
**Arguments**:
265264

266265
- `path` _str_ - The path to receive incoming requests from Slack
@@ -932,7 +931,6 @@ async def handle_events(client, context):
932931
)
933932
```
934933

935-
936934
**Returns**:
937935

938936
- `AsyncWebClient` - `AsyncWebClient` instance
@@ -957,7 +955,6 @@ async def handle_button_clicks(ack):
957955
await ack()
958956
```
959957

960-
961958
**Returns**:
962959

963960
- `AsyncAck` - Callable `ack()` function
@@ -984,7 +981,6 @@ async def handle_button_clicks(ack, say):
984981
await say("Hi!")
985982
```
986983

987-
988984
**Returns**:
989985

990986
- `AsyncSay` - Callable `say()` function
@@ -1011,7 +1007,6 @@ async def handle_button_clicks(ack, respond):
10111007
await respond("Hi!")
10121008
```
10131009

1014-
10151010
**Returns**:
10161011

10171012
- `Optional[AsyncRespond]` - Callable `respond()` function
@@ -1040,7 +1035,6 @@ async def handle_button_clicks(context):
10401035
await context.complete(outputs={"stringReverse":"olleh"})
10411036
```
10421037

1043-
10441038
**Returns**:
10451039

10461040
- `AsyncComplete` - Callable `complete()` function
@@ -1069,7 +1063,6 @@ async def handle_button_clicks(context):
10691063
await context.fail(error="something went wrong")
10701064
```
10711065

1072-
10731066
**Returns**:
10741067

10751068
- `AsyncFail` - Callable `fail()` function

docs/english/reference/context/async_context.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ async def handle_events(client, context):
5252
)
5353
```
5454

55-
5655
**Returns**:
5756

5857
- `AsyncWebClient` - `AsyncWebClient` instance
@@ -77,7 +76,6 @@ async def handle_button_clicks(ack):
7776
await ack()
7877
```
7978

80-
8179
**Returns**:
8280

8381
- `AsyncAck` - Callable `ack()` function
@@ -104,7 +102,6 @@ async def handle_button_clicks(ack, say):
104102
await say("Hi!")
105103
```
106104

107-
108105
**Returns**:
109106

110107
- `AsyncSay` - Callable `say()` function
@@ -131,7 +128,6 @@ async def handle_button_clicks(ack, respond):
131128
await respond("Hi!")
132129
```
133130

134-
135131
**Returns**:
136132

137133
- `Optional[AsyncRespond]` - Callable `respond()` function
@@ -160,7 +156,6 @@ async def handle_button_clicks(context):
160156
await context.complete(outputs={"stringReverse":"olleh"})
161157
```
162158

163-
164159
**Returns**:
165160

166161
- `AsyncComplete` - Callable `complete()` function
@@ -189,7 +184,6 @@ async def handle_button_clicks(context):
189184
await context.fail(error="something went wrong")
190185
```
191186

192-
193187
**Returns**:
194188

195189
- `AsyncFail` - Callable `fail()` function

docs/english/reference/context/context.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def handle_events(client, context):
5353
)
5454
```
5555

56-
5756
**Returns**:
5857

5958
- `WebClient` - `WebClient` instance
@@ -78,7 +77,6 @@ def handle_button_clicks(ack):
7877
ack()
7978
```
8079

81-
8280
**Returns**:
8381

8482
- `Ack` - Callable `ack()` function
@@ -105,7 +103,6 @@ def handle_button_clicks(ack, say):
105103
say("Hi!")
106104
```
107105

108-
109106
**Returns**:
110107

111108
- `Say` - Callable `say()` function
@@ -132,7 +129,6 @@ def handle_button_clicks(ack, respond):
132129
respond("Hi!")
133130
```
134131

135-
136132
**Returns**:
137133

138134
- `Optional[Respond]` - Callable `respond()` function
@@ -161,7 +157,6 @@ def handle_button_clicks(context):
161157
context.complete(outputs={"stringReverse":"olleh"})
162158
```
163159

164-
165160
**Returns**:
166161

167162
- `Complete` - Callable `complete()` function
@@ -190,7 +185,6 @@ def handle_button_clicks(context):
190185
context.fail(error="something went wrong")
191186
```
192187

193-
194188
**Returns**:
195189

196190
- `Fail` - Callable `fail()` function

docs/english/reference/context/index.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ def handle_events(client, context):
7676
)
7777
```
7878

79-
8079
**Returns**:
8180

8281
- `WebClient` - `WebClient` instance
@@ -101,7 +100,6 @@ def handle_button_clicks(ack):
101100
ack()
102101
```
103102

104-
105103
**Returns**:
106104

107105
- `Ack` - Callable `ack()` function
@@ -128,7 +126,6 @@ def handle_button_clicks(ack, say):
128126
say("Hi!")
129127
```
130128

131-
132129
**Returns**:
133130

134131
- `Say` - Callable `say()` function
@@ -155,7 +152,6 @@ def handle_button_clicks(ack, respond):
155152
respond("Hi!")
156153
```
157154

158-
159155
**Returns**:
160156

161157
- `Optional[Respond]` - Callable `respond()` function
@@ -184,7 +180,6 @@ def handle_button_clicks(context):
184180
context.complete(outputs={"stringReverse":"olleh"})
185181
```
186182

187-
188183
**Returns**:
189184

190185
- `Complete` - Callable `complete()` function
@@ -213,7 +208,6 @@ def handle_button_clicks(context):
213208
context.fail(error="something went wrong")
214209
```
215210

216-
217211
**Returns**:
218212

219213
- `Fail` - Callable `fail()` function

docs/english/reference/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ def handle_buttons(args):
117117
)
118118
```
119119

120-
121120
## Listener Objects
122121

123122
```python

0 commit comments

Comments
 (0)