diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2023-01-14 06:48:11 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2024-02-18 11:32:53 +0100 |
commit | 78e551804dfd1784f10c627dd4c8d019214b66a1 (patch) | |
tree | e41a030098c6a3d786c6a5160a94b9b2957769d7 /slack/commands.py | |
parent | eed3b0a919e3790c4383548e3d30c83070465e7d (diff) | |
download | wee-slack-78e551804dfd1784f10c627dd4c8d019214b66a1.tar.gz |
Split slack classes into multiple files
Diffstat (limited to 'slack/commands.py')
-rw-r--r-- | slack/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slack/commands.py b/slack/commands.py index 24ee99f..44d1d13 100644 --- a/slack/commands.py +++ b/slack/commands.py @@ -7,9 +7,9 @@ from typing import Any, Callable, Dict, List, Optional, Tuple import weechat -from slack.api import SlackWorkspace from slack.log import print_error from slack.shared import shared +from slack.slack_workspace import SlackWorkspace from slack.task import create_task from slack.util import get_callback_name, with_color from slack.weechat_config import WeeChatOption |