Kirill Ignatev

Results 10 comments of Kirill Ignatev

Switch version does not have better assets than Wii U. To get the same as Switch (or better) graphics in BoTW on Cemu you need to increase draw distance and...

Seems like duplicate of https://github.com/Instagram/LibCST/issues/1095 UPDATE: Okay, maybe it's not the same, just similar. Here is `assert`, and there is `while`. UPDATE2: I was wrong, this is not an issue...

@AryazE I had a similar issue. However, the LibCST validator is working correctly here by preventing me from generating incorrect code. I fixed my code and might help you if...

It's a bug in `libcst.tool`. There is a PR to fix it, but it was never merged: https://github.com/Instagram/LibCST/pull/665

@jvansanten Should be fixed now in the main branch! There was no release yet, so you would need to build from source if you'd like to check it out.

`MatchIfTrue` will work if you create a regular named function and use that instead of a lambda. Something like this: ```python def request_in_params(params): return any(p.name.value == "request" for p in...

Maybe just increase the recursion limit? Is it currently the default 1000? You can check with [sys.getrecursionlimit()](https://docs.python.org/3/library/sys.html#sys.getrecursionlimit) and increase with [sys.setrecursionlimit](https://docs.python.org/library/sys.html#sys.setrecursionlimit)

This page looks great! Any background info on who made this and who supports it?

This seems like an improvement, thank you. It's really hard to catch a specific `Exception`, I have to rely on its message. I hope this gets merged.

You're welcome! (although I didn't do anything) Keeping the exception messages backwards-compatible is a great idea, thank you!