-
Notifications
You must be signed in to change notification settings - Fork 849
Closed
Labels
auto-triage-staleenhancementM-T: A feature request for new functionalityM-T: A feature request for new functionalitysemver:patch
Description
example below from slack_sdk/web/client.py
why not delete them are at least add docstr or a warning message to the log these are deprecated!
# --------------------------
# Deprecated: channels.*
# You can use conversations.* APIs instead.
# https://api.slack.com/changelog/2020-01-deprecating-antecedents-to-the-conversations-api
# --------------------------
def channels_archive(
self,
*,
channel: str,
**kwargs,
) -> SlackResponse:
"""Archives a channel."""
kwargs.update({"channel": channel})
kwargs = _remove_none_values(kwargs)
return self.api_call("channels.archive", json=kwargs)
Metadata
Metadata
Assignees
Labels
auto-triage-staleenhancementM-T: A feature request for new functionalityM-T: A feature request for new functionalitysemver:patch