Skip to content

Commit

Permalink
version 1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Dec 24, 2021
1 parent 0b980ec commit 8cf6087
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
9 changes: 6 additions & 3 deletions docs/api-docs/slack_bolt/request/async_request.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ <h1 class="title">Module <code>slack_bolt.request.async_request</code></h1>
self.mode = mode

def to_copyable(self) -&gt; &#34;AsyncBoltRequest&#34;:
body: Union[str, dict] = self.raw_body if self.mode == &#34;http&#34; else self.body
return AsyncBoltRequest(
body=self.raw_body,
body=body,
query=self.query,
headers=self.headers,
context=self.context.to_copyable(),
Expand Down Expand Up @@ -211,8 +212,9 @@ <h2 id="args">Args</h2>
self.mode = mode

def to_copyable(self) -&gt; &#34;AsyncBoltRequest&#34;:
body: Union[str, dict] = self.raw_body if self.mode == &#34;http&#34; else self.body
return AsyncBoltRequest(
body=self.raw_body,
body=body,
query=self.query,
headers=self.headers,
context=self.context.to_copyable(),
Expand Down Expand Up @@ -270,8 +272,9 @@ <h3>Methods</h3>
<span>Expand source code</span>
</summary>
<pre><code class="python">def to_copyable(self) -&gt; &#34;AsyncBoltRequest&#34;:
body: Union[str, dict] = self.raw_body if self.mode == &#34;http&#34; else self.body
return AsyncBoltRequest(
body=self.raw_body,
body=body,
query=self.query,
headers=self.headers,
context=self.context.to_copyable(),
Expand Down
9 changes: 6 additions & 3 deletions docs/api-docs/slack_bolt/request/request.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ <h1 class="title">Module <code>slack_bolt.request.request</code></h1>
self.mode = mode

def to_copyable(self) -&gt; &#34;BoltRequest&#34;:
body: Union[str, dict] = self.raw_body if self.mode == &#34;http&#34; else self.body
return BoltRequest(
body=self.raw_body,
body=body,
query=self.query,
headers=self.headers,
context=self.context.to_copyable(),
Expand Down Expand Up @@ -205,8 +206,9 @@ <h2 id="args">Args</h2>
self.mode = mode

def to_copyable(self) -&gt; &#34;BoltRequest&#34;:
body: Union[str, dict] = self.raw_body if self.mode == &#34;http&#34; else self.body
return BoltRequest(
body=self.raw_body,
body=body,
query=self.query,
headers=self.headers,
context=self.context.to_copyable(),
Expand Down Expand Up @@ -264,8 +266,9 @@ <h3>Methods</h3>
<span>Expand source code</span>
</summary>
<pre><code class="python">def to_copyable(self) -&gt; &#34;BoltRequest&#34;:
body: Union[str, dict] = self.raw_body if self.mode == &#34;http&#34; else self.body
return BoltRequest(
body=self.raw_body,
body=body,
query=self.query,
headers=self.headers,
context=self.context.to_copyable(),
Expand Down
2 changes: 1 addition & 1 deletion docs/api-docs/slack_bolt/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_bolt.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-bolt/&#34;&#34;&#34;
__version__ = &#34;1.11.0&#34;</code></pre>
__version__ = &#34;1.11.1&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion slack_bolt/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-bolt/"""
__version__ = "1.11.0"
__version__ = "1.11.1"

0 comments on commit 8cf6087

Please sign in to comment.