Malo

Results 7 comments of Malo

The `` part seems to be similar to this issue https://github.com/Riverside-Healthcare/djLint/issues/697

@jn42lm1 the issue is not exactly the same The fix you mention in #6174 has since been implemented (here https://github.com/ionic-team/capacitor/pull/6868) ``` window.fetch = async (resource, options) => { const request...

Hi @jcesarmobile (sorry for the tag), I added a link to a reprodution in the description of the issue, is there anything else I can do to help ?

For reference the issue seems to be linked to mypy version 1.16.1. In our repo we have django stubs version 5.1.3 with mypy 1.15.0, which works fine. However bumping mypy...

True, I tried adding all the dependencies and installed apps from my repo to that example one, and still did not manage make mypy fail on it

I managed to reproduce on your repo, by just adding the `strict_optional = false` config flag. We use that flag in our repo so I suspect that's the cause. I'll...

I did a git bisect between mypy versions 1.15.0 and 1.16.0 on the minmal reproduction, which gave me the following commit as the one that introduced the regression https://github.com/python/mypy/commit/4629de44c1fdbfc0d77ffaa5458c64481ba6976c Related...