Correct type annotation

This commit is contained in:
Midgard 2024-05-20 12:53:02 +02:00
parent 810a9d99cb
commit 9a3482eabb
Signed by: midgard
GPG key ID: 511C112F1331BBB4

View file

@ -4,7 +4,7 @@ import sys
import argparse
import os
import json
from typing import Dict, Optional, List, Iterable
from typing import Dict, Optional, List, Iterable, Tuple
import re
from time import sleep
import threading
@ -158,7 +158,7 @@ def resolve_channel(mm_api: mattermost.MMApi, team_id: str, query: str) -> Optio
return joined_channel_result
def resolve_team_channel(mm_api: mattermost.MMApi, query: str) -> Dict:
def resolve_team_channel(mm_api: mattermost.MMApi, query: str) -> Tuple[Dict, Dict]:
query_parts = query.split("/")
del query
if len(query_parts) != 2: