Skip to content

Commit

Permalink
version 3.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Sep 6, 2022
1 parent 6ab8bd2 commit c782d71
Show file tree
Hide file tree
Showing 8 changed files with 146 additions and 146 deletions.
46 changes: 23 additions & 23 deletions docs/api-docs/slack_sdk/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/api-docs/slack_sdk/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_sdk.version</code></h1>
<span>Expand source code</span>
</summary>
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-sdk/&#34;&#34;&#34;
__version__ = &#34;3.18.2&#34;</code></pre>
__version__ = &#34;3.18.3&#34;</code></pre>
</details>
</section>
<section>
Expand Down
64 changes: 32 additions & 32 deletions docs/api-docs/slack_sdk/web/async_client.html

Large diffs are not rendered by default.

64 changes: 32 additions & 32 deletions docs/api-docs/slack_sdk/web/client.html

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions docs/api-docs/slack_sdk/web/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/api-docs/slack_sdk/web/internal_utils.html
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ <h1 class="title">Module <code>slack_sdk.web.internal_utils</code></h1>
return obj

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

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

Expand Down
64 changes: 32 additions & 32 deletions docs/api-docs/slack_sdk/web/legacy_client.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion slack_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Check the latest version at https://pypi.org/project/slack-sdk/"""
__version__ = "3.18.2"
__version__ = "3.18.3"

0 comments on commit c782d71

Please sign in to comment.