Kazuhiro Sera
Kazuhiro Sera
@mslinn @Rheeseyb I just added you all to collaborators. Feel free to merge PRs and update develop branch! Recently I'm not active on this project but I'm the owner of...
> I do not understand what the problem is re. SBT 0.13.2.-M3, or I would have fixed it. Hopefully someone else can do that. @mslinn Fixed. Sorry for having borthered...
Hi @Harmon758, if you're still interested in adding type hints to this project, could you check my pull request resolving it? https://github.com/tweepy/tweepy/pull/1759 Let me know if you prefer splitting the...
@Harmon758 Thanks for the reply! I do understand your priorities. Also, I was also thinking that, in general, it's not so easy to quickly check and merge such a large...
@Harmon758 Do you want me to resolve the conflicts in the PR now? Or, do you have a different time frame for merging he changes (say, in a few months...
@Harmon758 OK, I will close #1759 and may submit smaller ones when I have time! That being said, if you would like to merge those changes more quickly, please feel...
Hi @mady143, thanks for writing in. > slackeventsapi.server.SlackEventAdapterException: Invalid request signature This error indicates your loaded signing secret might be wrong. Could you double-check whether you've passed a valid value...
Also, our latest recommendation is to use bolt-python, which is more robust and covers full features of the Slack platform. Here is a simple Flask app examples: https://github.com/slackapi/bolt-python/tree/main/examples/flask If you...
Let us close this issue due to its inactivity. As mentioned above, we recommend using bolt-python instead. If you have further questions with bolt-python, please feel free to ask questions...
This issue happens with not only tuples but any types. ``` scala trait HasAFoo { def foo: String = "foo" } case class Thing(hello: String) extends HasAFoo ``` ``` [error]...