Skip to content

Commit 0b84935

Browse files
committed
Fixes bad reture of get_Slack_user-and_workspace
1 parent a061563 commit 0b84935

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

33
setup(
4-
version="1.0.3",
4+
version="1.0.31",
55
install_requires=["slackclient"]
66
)

slack_app/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def slack_command(request, name: str):
114114
if fn:
115115
if required_linked_account:
116116
try:
117-
workspace, mapping = get_slack_user_and_workspace(
117+
mapping, workspace = get_slack_user_and_workspace(
118118
request.POST.get('team_id'),
119119
request.POST.get('user_id')
120120
)

0 commit comments

Comments
 (0)