Valentin Stanciu
Valentin Stanciu
I've fixed this for me by changing the custom.css file. In the `div.CodeMirror pre` block, adding `padding-right: 1.5em;` fixes it for me.
Closing this issue since the 1.9.0 release is done!
Looks like typeshed syncing is having a conflict when cherry picking "Remove use of LiteralString in builtins" ([6f913a148](https://github.com/python/mypy/commit/6f913a148e1c1ec126d2009272a4a26ff61b8195)) https://github.com/python/mypy/actions/workflows/sync_typeshed.yml
Ah, thanks! :D
Looks like we have a typeshed bug: ``` from unittest.mock import patch def addition(a: int, b:int) -> int: return a+b @patch('test.addition') def patch_test(mock): print(mock) if __name__ == "__main__": patch_test() ```...
I think it's best if we leave https://github.com/python/mypy/pull/15668 for the next release
Created the [release-1.5 branch](https://github.com/python/mypy/tree/release-1.5)
Hmm, I think we have an issue, but can't find out what changed. Did we remove typeshed for `attr` or something like that? For this example ```lang=python import attr @attr.s(frozen=True)...
Ah, thanks!
I made https://github.com/python/mypy/pull/15674 to revert it for 1.5 too. But we should probably figure out a more permanent solution. If we are going to keep reverting the change for every...