Skip to content

Commit 1c41241

Browse files
committed
Add __all__ to __init__.py
1 parent a414a67 commit 1c41241

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
user_conversations = client.discovery_user_conversations(
1818
user=auth_test["user_id"], limit=5
1919
)
20-
print(user_conversations)
20+
print(user_conversations)

slack_discovery_sdk/__init__.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@
33

44
"""The Slack Web API allows you to build applications that interact with Slack
55
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
6+
from .client import DiscoveryClient
7+
from .oauth import DiscoveryOAuthApp
8+
9+
__all__ = [
10+
"DiscoveryClient",
11+
"DiscoveryOAuthApp",
12+
]

0 commit comments

Comments
 (0)