Skip to content

Commit c782d71

Browse files
committed
version 3.18.3
1 parent 6ab8bd2 commit c782d71

File tree

8 files changed

+146
-146
lines changed

8 files changed

+146
-146
lines changed

docs/api-docs/slack_sdk/index.html

Lines changed: 23 additions & 23 deletions
Large diffs are not rendered by default.

docs/api-docs/slack_sdk/version.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_sdk.version</code></h1>
2828
<span>Expand source code</span>
2929
</summary>
3030
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-sdk/&#34;&#34;&#34;
31-
__version__ = &#34;3.18.2&#34;</code></pre>
31+
__version__ = &#34;3.18.3&#34;</code></pre>
3232
</details>
3333
</section>
3434
<section>

docs/api-docs/slack_sdk/web/async_client.html

Lines changed: 32 additions & 32 deletions
Large diffs are not rendered by default.

docs/api-docs/slack_sdk/web/client.html

Lines changed: 32 additions & 32 deletions
Large diffs are not rendered by default.

docs/api-docs/slack_sdk/web/index.html

Lines changed: 23 additions & 23 deletions
Large diffs are not rendered by default.

docs/api-docs/slack_sdk/web/internal_utils.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,12 @@ <h1 class="title">Module <code>slack_sdk.web.internal_utils</code></h1>
217217
return obj
218218

219219
blocks = kwargs.get(&#34;blocks&#34;, None)
220-
if blocks is not None and isinstance(blocks, Sequence):
220+
if blocks is not None and isinstance(blocks, Sequence) and (not isinstance(blocks, str)):
221221
dict_blocks = [to_dict(b) for b in blocks]
222222
kwargs.update({&#34;blocks&#34;: dict_blocks})
223223

224224
attachments = kwargs.get(&#34;attachments&#34;, None)
225-
if attachments is not None and isinstance(attachments, Sequence):
225+
if attachments is not None and isinstance(attachments, Sequence) and (not isinstance(attachments, str)):
226226
dict_attachments = [to_dict(a) for a in attachments]
227227
kwargs.update({&#34;attachments&#34;: dict_attachments})
228228

docs/api-docs/slack_sdk/web/legacy_client.html

Lines changed: 32 additions & 32 deletions
Large diffs are not rendered by default.

slack_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Check the latest version at https://pypi.org/project/slack-sdk/"""
2-
__version__ = "3.18.2"
2+
__version__ = "3.18.3"

0 commit comments

Comments
 (0)