aboutsummaryrefslogtreecommitdiffstats
path: root/slack/weechat_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'slack/weechat_config.py')
-rw-r--r--slack/weechat_config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/slack/weechat_config.py b/slack/weechat_config.py
index 6decf37..8d17b13 100644
--- a/slack/weechat_config.py
+++ b/slack/weechat_config.py
@@ -48,7 +48,8 @@ class WeeChatSection:
)
-WeeChatOptionType = TypeVar("WeeChatOptionType", bound=Union[int, str])
+WeeChatOptionTypes = Union[int, str]
+WeeChatOptionType = TypeVar("WeeChatOptionType", bound=WeeChatOptionTypes)
@dataclass