We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a414a67 commit 1c41241Copy full SHA for 1c41241
app.py
@@ -17,4 +17,4 @@
17
user_conversations = client.discovery_user_conversations(
18
user=auth_test["user_id"], limit=5
19
)
20
-print(user_conversations)
+print(user_conversations)
slack_discovery_sdk/__init__.py
@@ -3,5 +3,10 @@
3
4
"""The Slack Web API allows you to build applications that interact with Slack
5
in more complex ways than the integrations we provide out of the box."""
6
-from .client import DiscoveryClient # noqa
7
-from .oauth import DiscoveryOAuthApp # noqa
+from .client import DiscoveryClient
+from .oauth import DiscoveryOAuthApp
8
+
9
+__all__ = [
10
+ "DiscoveryClient",
11
+ "DiscoveryOAuthApp",
12
+]
0 commit comments