João Fé
João Fé
In [Short-Lived Feature Branches](https://trunkbaseddevelopment.com/styles/#short-lived-feature-branches) says > What you get (if you’ve attached build automation too), is a trunk or main that’s never broken (or 1/1000th as likely to). giving the...
[Documentation](https://requests-mock.readthedocs.io/en/stable/response.html#dynamic-response) says that `request` is of type `Request` but my callback function is receiving a `PreparedRequest` object instead. My spec: `python = "^3.10"` `requests = "^2.27.1"` `pytest = "^7.1.1"` `requests-mock...
- Scala version: 2.13.15 - wartremover version: 3.2.2 Compiling https://github.com/joaompfe/wartremover-flaw/ fails with ``` [error] /Users/joao.fe/workspace/wartremover-issue/quickstart/src/main/scala/com/example/quickstart/Main.scala:12:15: [wartremover:Any] Inferred type containing Any: cats.data.Kleisli[[+A]cats.effect.IO[A],org.http4s.Request[cats.effect.IO],org.http4s.Response[[+A]cats.effect.IO[A]]] ``` But `cats.data.Kleisli[[+A]cats.effect.IO[A],org.http4s.Request[cats.effect.IO],org.http4s.Response[[+A]cats.effect.IO[A]]]` does not contain `Any`.