Skip to content

Commit

Permalink
version 3.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Apr 18, 2023
1 parent 9d9dce0 commit f37c691
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,11 @@ <h1 class="title">Module <code>slack_sdk.oauth.installation_store.sqlalchemy</co
team_id = None

c = self.installations.c
where_clause = and_(c.enterprise_id == enterprise_id, c.team_id == team_id)
where_clause = and_(
c.client_id == self.client_id,
c.enterprise_id == enterprise_id,
c.team_id == team_id,
)
if user_id is not None:
where_clause = and_(
c.client_id == self.client_id,
Expand Down Expand Up @@ -646,7 +650,11 @@ <h2 class="section-title" id="header-classes">Classes</h2>
team_id = None

c = self.installations.c
where_clause = and_(c.enterprise_id == enterprise_id, c.team_id == team_id)
where_clause = and_(
c.client_id == self.client_id,
c.enterprise_id == enterprise_id,
c.team_id == team_id,
)
if user_id is not None:
where_clause = and_(
c.client_id == self.client_id,
Expand Down
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.21.1&#34;</code></pre>
__version__ = &#34;3.21.2&#34;</code></pre>
</details>
</section>
<section>
Expand Down
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.21.1"
__version__ = "3.21.2"

0 comments on commit f37c691

Please sign in to comment.