Skip to content

Commit c4161a9

Browse files
committed
Fix
1 parent 4da09fb commit c4161a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

slack_bolt/context/respond/internals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _build_message(
1616
unfurl_links: Optional[bool] = None,
1717
unfurl_media: Optional[bool] = None,
1818
thread_ts: Optional[str] = None,
19-
metadata: Dict[str, Any] = None,
19+
metadata: Optional[Dict[str, Any]] = None,
2020
) -> Dict[str, Any]:
2121
message = {"text": text}
2222
if blocks is not None and len(blocks) > 0:

0 commit comments

Comments
 (0)