Logan Hunt
Logan Hunt
Thank you for opening this! This sounds easy enough to implement, I'll give it a shot over the weekend. Because anyone can make their own custom in-place operators, I think...
The rule you mentioned is similar to [`FURB111`](https://github.com/dosisod/refurb/blob/master/docs/checks.md#furb111-use-func-name) as it detects lambdas where the arguments are passed verbatim, making the lambda redundant. Adding detection for `partial` would be good, and...
Thank you @sbrugman for opening this! I think this is a good thing to add. There are probably a bunch of edge cases in how people use (or misuse) fluent...
@owenlamont thank you for opening this. Refurb already checks for `None` types, so you shouldn't be seeing an error here. Also, I tested your code snippet and it isn't giving...
Thank you for the updated code, and sorry for the late response! I've ran into a (slightly different) version of this a while ago: Mypy does not seem to update...
Thank you for bringing this up! Refurb is built on top of [Mypy](https://github.com/python/mypy), and as such, all caching and processing is done by Mypy. For reasons I have yet to...
Hi @jamesbraza , I just released a new version of Refurb to address some of the speed issues. How long does Refurb take with the new version (v1.20.0)? If Refurb...
Thank you for this data! Here's some stats from what I can see: * Total runtime: 12-11 seconds * Time spent in Mypy: 8.3 seconds * Time spent in Refurb:...
Thank you for the response! It's unfortunate that Docker runs so slow on macOS, but it's good to know that it's Docker, not Refurb, that's taking 10 minutes. Note to...
Hi, thank you for opening this issue! A couple of follow up questions: * Is the source code for this application open source? Being able to see the full project...