-
Notifications
You must be signed in to change notification settings - Fork 847
Open
Labels
Milestone
Description
Is there a reason that deprecated methods, such as groups_createChild, are allowed to be called? As the deprecation happened 3.5 years ago, it feels like it's a good time to comment them out or remove it. An old issue had a similar question, but it's not quite the same question.
python-slack-sdk/slack_sdk/web/client.py
Lines 3840 to 3848 in 417fc5b
| def groups_createChild( | |
| self, | |
| *, | |
| channel: str, | |
| **kwargs, | |
| ) -> SlackResponse: | |
| """Clones and archives a private channel.""" | |
| kwargs.update({"channel": channel}) | |
| return self.api_call("groups.createChild", http_verb="GET", params=kwargs) |
WilliamBergamin