Skip to content

Commit 8c56e22

Browse files
committed
fix: remove unsupported and unused identifiers for full support
1 parent c3bdb2d commit 8c56e22

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

slack_sdk/models/messages/chunk.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import logging
2-
from typing import Any, Dict, Literal, Optional, Sequence, Set, Union
2+
from typing import Any, Dict, Optional, Sequence, Set, Union
33

44
from slack_sdk.errors import SlackObjectFormationError
55
from slack_sdk.models import show_unknown_key_warning
66
from slack_sdk.models.basic_objects import JsonObject
77

8-
LOGGER = logging.getLogger(__name__)
9-
108

119
class Chunk(JsonObject):
1210
"""
@@ -128,7 +126,7 @@ def __init__(
128126
*,
129127
id: str,
130128
title: str,
131-
status: Literal["pending", "in_progress", "complete", "error"],
129+
status: str, # "pending", "in_progress", "complete", "error"
132130
details: Optional[str] = None,
133131
output: Optional[str] = None,
134132
sources: Optional[Sequence[Union[Dict, URLSource]]] = None,

0 commit comments

Comments
 (0)